提交 ed562ab1 编写于 作者: R Russell King

[PATCH] ARM: IntegratorCP: 16bpp is RGB565 not RGB555

Signed-off-by: NRussell King <rmk@arm.linux.org.uk>
上级 1ddb8a16
......@@ -134,16 +134,16 @@ clcdfb_set_bitfields(struct clcd_fb *fb, struct fb_var_screeninfo *var)
break;
case 16:
var->red.length = 5;
var->green.length = 5;
var->green.length = 6;
var->blue.length = 5;
if (fb->panel->cntl & CNTL_BGR) {
var->red.offset = 10;
var->red.offset = 11;
var->green.offset = 5;
var->blue.offset = 0;
} else {
var->red.offset = 0;
var->green.offset = 5;
var->blue.offset = 10;
var->blue.offset = 11;
}
break;
case 32:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册