Skip to content

Commit

Permalink
Merge branch 'master' of git://git.denx.de/u-boot-video
Browse files Browse the repository at this point in the history
  • Loading branch information
wdenx committed Jul 17, 2010
2 parents 0fe247b + 7c050f8 commit 293e393
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions drivers/video/cfb_console.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion include/video_fb.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* (C) Copyright 1997-2002 ELTEC Elektronik AG
* Frank Gottschling <[email protected]>
*
Expand Down

0 comments on commit 293e393

Please sign in to comment.