Message ID | 1306400942-26956-1-git-send-email-dhobsong@igel.co.jp (mailing list archive) |
---|---|
State | Deferred |
Headers | show |
Hi Damian, On Thu, May 26, 2011 at 6:09 PM, Damian Hobson-Garcia <dhobsong@igel.co.jp> wrote: > The ordering of the bytes in the 24 bpp RGB colour mode was > being set to BGR. > > This now matches the values returned in the > struct fb_var_screeninfo .red, .green, and .blue offsets as well as > the output format of other blocs, such as the VEU > > Signed-off-by: Damian Hobson-Garcia <dhobsong@igel.co.jp> > --- Thanks for your patch. With this change in place, is the fbdev console still working as expected? Also, the byte swap settings in _LDDDSR are ok as-is? Thanks, / magnus -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c index 04f2260..a442471 100644 --- a/drivers/video/sh_mobile_lcdcfb.c +++ b/drivers/video/sh_mobile_lcdcfb.c @@ -590,7 +590,7 @@ static int sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv) tmp |= 0x03; break; case 24: - tmp |= 0x0b; + tmp |= 0x02; break; case 32: break; @@ -1178,7 +1178,7 @@ static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo *var, int bpp, var->transp.length = 0; break; - case 24: /* PKF[4:0] = 01011 - RGB 888 */ + case 24: /* PKF[4:0] = 00010 - RGB 888 */ var->red.offset = 16; var->red.length = 8; var->green.offset = 8;
The ordering of the bytes in the 24 bpp RGB colour mode was being set to BGR. This now matches the values returned in the struct fb_var_screeninfo .red, .green, and .blue offsets as well as the output format of other blocs, such as the VEU Signed-off-by: Damian Hobson-Garcia <dhobsong@igel.co.jp> --- drivers/video/sh_mobile_lcdcfb.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)