From: Ondrej Zary Date: Thu, 1 Oct 2015 21:22:53 +0000 (+0200) Subject: gxt4500: fix color order X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3c083aa9d2a7b8904c6bd68628c7dfdf9d413816;p=linux-beck.git gxt4500: fix color order The color order in truecolor modes is wrong. This does not affect console but is visible e.g. in X11 which has wrong colors. Swap blue and red colors to fix the problem. Fixes https://forums.gentoo.org/viewtopic-t-692740-start-0.html Signed-off-by: Ondrej Zary Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/fbdev/gxt4500.c b/drivers/video/fbdev/gxt4500.c index 3c481d0634fe..3ceddb837085 100644 --- a/drivers/video/fbdev/gxt4500.c +++ b/drivers/video/fbdev/gxt4500.c @@ -347,11 +347,12 @@ static void gxt4500_unpack_pixfmt(struct fb_var_screeninfo *var, break; } if (pixfmt != DFA_PIX_8BIT) { - var->green.offset = var->red.length; - var->blue.offset = var->green.offset + var->green.length; + var->blue.offset = 0; + var->green.offset = var->blue.length; + var->red.offset = var->green.offset + var->green.length; if (var->transp.length) var->transp.offset = - var->blue.offset + var->blue.length; + var->red.offset + var->red.length; } }