The patch titled fbdev: Static pseudocolor with depth less than 4 does exist has been removed from the -mm tree. Its filename is fbdev-static-pseudocolor-with-depth-less-than-4-does.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fbdev: Static pseudocolor with depth less than 4 does exist From: "Antonino A. Daplas" <adaplas@xxxxxxxxx> 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 <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/fbmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/fbmem.c~fbdev-static-pseudocolor-with-depth-less-than-4-does drivers/video/fbmem.c --- a/drivers/video/fbmem.c~fbdev-static-pseudocolor-with-depth-less-than-4-does +++ a/drivers/video/fbmem.c @@ -433,7 +433,7 @@ int fb_prepare_logo(struct fb_info *info 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; } _ Patches currently in -mm which might be from adaplas@xxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html