diff options
author | Anatolij Gustschin <agust@denx.de> | 2010-06-19 20:41:56 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2010-07-17 00:05:14 +0200 |
commit | 7c050f818b51841de77fbfd077080d94f3c8b3ad (patch) | |
tree | 4b21bc7e6290beb504da643b69d26f960c5954ae /drivers/video/cfb_console.c | |
parent | b6c208ab1ebc2ac01e0029b8456210617ff67156 (diff) | |
download | u-boot-7c050f818b51841de77fbfd077080d94f3c8b3ad.tar.gz u-boot-7c050f818b51841de77fbfd077080d94f3c8b3ad.tar.xz u-boot-7c050f818b51841de77fbfd077080d94f3c8b3ad.zip |
video: cleanup comments in cfb_console.c and video_fb.h
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'drivers/video/cfb_console.c')
-rw-r--r-- | drivers/video/cfb_console.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 96d52fbaea..fae54177cb 100644 --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c @@ -1119,7 +1119,7 @@ int video_display_bitmap (ulong bmp_image, int x, int y) case 8: padded_line -= width; if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) { - /* Copy colormap */ + /* Copy colormap */ for (xcount = 0; xcount < colors; ++xcount) { cte = bmp->color_table[xcount]; video_set_lut (xcount, cte.red, cte.green, cte.blue); @@ -1321,11 +1321,11 @@ void logo_plot (void *screen, int width, int x, int y) #ifdef CONFIG_VIDEO_BMP_LOGO source = bmp_logo_bitmap; - /* Allocate temporary space for computing colormap */ + /* Allocate temporary space for computing colormap */ logo_red = malloc (BMP_LOGO_COLORS); logo_green = malloc (BMP_LOGO_COLORS); logo_blue = malloc (BMP_LOGO_COLORS); - /* Compute color map */ + /* Compute color map */ for (i = 0; i < VIDEO_LOGO_COLORS; i++) { logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4; logo_green[i] = (bmp_logo_palette[i] & 0x00f0); |