OMAPFB: fix framebuffer console colors

omapfb does not currently set pseudo palette correctly for color depths
above 16bpp, making red text invisible, command like
  echo -e '\e[0;31mRED' > /dev/tty1
will display nothing on framebuffer console in 24bpp mode.
This is because temporary variable is declared incorrectly, fix it.

Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
Grazvydas Ignotas 2012-08-04 19:19:13 +03:00 committed by Tomi Valkeinen
parent 8aa2eed134
commit a2496dc942
1 changed files with 1 additions and 1 deletions

View File

@ -1192,7 +1192,7 @@ static int _setcolreg(struct fb_info *fbi, u_int regno, u_int red, u_int green,
break; break;
if (regno < 16) { if (regno < 16) {
u16 pal; u32 pal;
pal = ((red >> (16 - var->red.length)) << pal = ((red >> (16 - var->red.length)) <<
var->red.offset) | var->red.offset) |
((green >> (16 - var->green.length)) << ((green >> (16 - var->green.length)) <<