The patch titled s3c2410fb: fix un-initialised dev field has been removed from the -mm tree. Its filename was s3c2410fb-fix-un-initialised-dev-field.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: s3c2410fb: fix un-initialised dev field From: Ben Dooks <ben@xxxxxxxxxxxx> The current driver is not setting the dev field in the private data structure, which can lead to an OOPS if the driver tries to report an error. Signed-off-by: Ben Dooks <ben-linux@xxxxxxxxx> Cc: James Simmons <jsimmons@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/s3c2410fb.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN drivers/video/s3c2410fb.c~s3c2410fb-fix-un-initialised-dev-field drivers/video/s3c2410fb.c --- a/drivers/video/s3c2410fb.c~s3c2410fb-fix-un-initialised-dev-field +++ a/drivers/video/s3c2410fb.c @@ -791,6 +791,8 @@ static int __init s3c2410fb_probe(struct info = fbinfo->par; info->fb = fbinfo; + info->dev = &pdev->dev; + platform_set_drvdata(pdev, fbinfo); dprintk("devinit\n"); _ Patches currently in -mm which might be from ben@xxxxxxxxxxxx are origin.patch mfd-sm501-core-driver-3.patch fb-sm501-framebuffer-driver-5.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