The patch titled
epson1355fb.c: fix error handling code
has been added to the -mm tree. Its filename is
epson1355fbc-fix-error-handling-code.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: epson1355fb.c: fix error handling code
From: Roland Stigge <[EMAIL PROTECTED]>
Fix error handling code
Signed-off-by: Roland Stigge <[EMAIL PROTECTED]>
Signed-off-by: Antonino Daplas <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/video/epson1355fb.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff -puN drivers/video/epson1355fb.c~epson1355fbc-fix-error-handling-code
drivers/video/epson1355fb.c
--- a/drivers/video/epson1355fb.c~epson1355fbc-fix-error-handling-code
+++ a/drivers/video/epson1355fb.c
@@ -650,9 +650,10 @@ int __init epson1355fb_probe(struct plat
}
info = framebuffer_alloc(sizeof(struct epson1355_par) + sizeof(u32) *
256, &dev->dev);
- if (!info)
+ if (!info) {
rc = -ENOMEM;
goto bail;
+ }
default_par = info->par;
default_par->reg_addr = (unsigned long) ioremap(EPSON1355FB_REGS_PHYS,
EPSON1355FB_REGS_LEN);
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
epson1355fbc-fix-error-handling-code.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