From: Michal Januszewski Set uvesafb's default visual to truecolor. This prevents fbcon from being detected as 'mono' when using uvesafb. Signed-off-by: Michal Januszewski Cc: "Antonino A. Daplas" Signed-off-by: Andrew Morton --- drivers/video/uvesafb.c | 1 + 1 files changed, 1 insertion(+) diff -puN drivers/video/uvesafb.c~uvesafb-the-driver-core-uvesafb-use-visual_truecolor-as-the-default-visual drivers/video/uvesafb.c --- a/drivers/video/uvesafb.c~uvesafb-the-driver-core-uvesafb-use-visual_truecolor-as-the-default-visual +++ a/drivers/video/uvesafb.c @@ -37,6 +37,7 @@ static struct fb_fix_screeninfo uvesafb_ .id = "VESA VGA", .type = FB_TYPE_PACKED_PIXELS, .accel = FB_ACCEL_NONE, + .visual = FB_VISUAL_TRUECOLOR, }; static int mtrr __devinitdata = 3; /* enable mtrr by default */ _