epson1355fb.c: fix error handling code
Fix error handling code Signed-off-by: Roland Stigge <stigge@antcom.de> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c930faaed5
commit
19f3d3a554
|
@ -650,9 +650,10 @@ int __init epson1355fb_probe(struct platform_device *dev)
|
|||
}
|
||||
|
||||
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);
|
||||
|
|
Loading…
Reference in New Issue