From: Antonino A. Daplas Date: Mon, 26 Jun 2006 07:26:36 +0000 (-0700) Subject: [PATCH] fbdev: Static pseudocolor with depth less than 4 does exist X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=0c683dbfc017e52e632853b33981be1a49276ba6;p=deliverable%2Flinux.git [PATCH] fbdev: Static pseudocolor with depth less than 4 does exist A static pseudocolor visual with depth less than 4 does exist, so let's not accidentally upscale the depth with this configuration Signed-off-by: Antonino Daplas Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c index 9bb6763d0cb8..2529805ed1c7 100644 --- a/drivers/video/fbmem.c +++ b/drivers/video/fbmem.c @@ -433,7 +433,7 @@ int fb_prepare_logo(struct fb_info *info, int rotate) depth = info->var.green.length; } - if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR) { + if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) { /* assume console colormap */ depth = 4; }