The patch titled
s3c2410fb: fix un-initialised dev field
has been added to the -mm tree. Its filename is
s3c2410fb-fix-un-initialised-dev-field.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: s3c2410fb: fix un-initialised dev field
From: Ben Dooks <[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]>
Cc: James Simmons <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
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 [EMAIL PROTECTED] are
mfd-sm501-core-driver-3.patch
s3c2410fb-fix-un-initialised-dev-field.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html