The patch titled tx3912fb: fix improper assignment of info->pseudo_palette has been removed from the -mm tree. Its filename was tx3912fb-fix-improper-assignment-of-info-pseudo_palette.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: tx3912fb: fix improper assignment of info->pseudo_palette From: "Antonino A. Daplas" <adaplas@xxxxxxxxx> There is no variable pseudo_palette. Instead, there is u32 cfb8[16]. Use this for info->pseudo_palette. Signed-off-by: Antonino Daplas <adaplas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/tx3912fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/tx3912fb.c~tx3912fb-fix-improper-assignment-of-info-pseudo_palette drivers/video/tx3912fb.c --- a/drivers/video/tx3912fb.c~tx3912fb-fix-improper-assignment-of-info-pseudo_palette +++ a/drivers/video/tx3912fb.c @@ -291,7 +291,7 @@ int __init tx3912fb_init(void) fb_info.fbops = &tx3912fb_ops; fb_info.var = tx3912fb_var; fb_info.fix = tx3912fb_fix; - fb_info.pseudo_palette = pseudo_palette; + fb_info.pseudo_palette = cfb8; fb_info.flags = FBINFO_DEFAULT; /* Clear the framebuffer */ _ 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