All of lore.kernel.org
 help / color / mirror / Atom feed
* - s3c2410fb-fix-un-initialised-dev-field.patch removed from -mm tree
@ 2007-02-17  7:16 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2007-02-17  7:16 UTC (permalink / raw)
  To: ben, ben-linux, jsimmons, mm-commits


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@fluff.org.uk>

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@fluff.org>
Cc: James Simmons <jsimmons@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 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@fluff.org.uk are

origin.patch
mfd-sm501-core-driver-3.patch
fb-sm501-framebuffer-driver-5.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-02-17  7:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-17  7:16 - s3c2410fb-fix-un-initialised-dev-field.patch removed from -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.