The patch titled pnx4008:fix NULL dereference in rgbfb has been removed from the -mm tree. Its filename was pnx4008fix-null-dereference-in-rgbfb.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: pnx4008:fix NULL dereference in rgbfb From: Vitaly Wool <vwool@xxxxxxxxxxxxx> Fix possible NULL dereference in pnxrgbfb. Signed-off-by: Vitaly Wool <vwool@xxxxxxxxxxxxx> Cc: James Simmons <jsimmons@xxxxxxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/pnx4008/pnxrgbfb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/video/pnx4008/pnxrgbfb.c~pnx4008fix-null-dereference-in-rgbfb drivers/video/pnx4008/pnxrgbfb.c --- a/drivers/video/pnx4008/pnxrgbfb.c~pnx4008fix-null-dereference-in-rgbfb +++ a/drivers/video/pnx4008/pnxrgbfb.c @@ -154,7 +154,8 @@ static int __devinit rgbfb_probe(struct goto err1; } - if (!fb_get_options("pnxrgbfb", &option) && !strcmp(option, "nocursor")) + if (!fb_get_options("pnxrgbfb", &option) && option && + !strcmp(option, "nocursor")) rgbfb_ops.fb_cursor = no_cursor; info->node = -1; _ Patches currently in -mm which might be from vwool@xxxxxxxxxxxxx are origin.patch git-netdev-all.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