projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c930faa
)
epson1355fb.c: fix error handling code
author
Roland Stigge
<
[email protected]
>
Tue, 8 May 2007 07:38:31 +0000
(
00:38
-0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 8 May 2007 18:15:28 +0000
(11:15 -0700)
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]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/video/epson1355fb.c
patch
|
blob
|
history
diff --git
a/drivers/video/epson1355fb.c
b/drivers/video/epson1355fb.c
index 29e07c1098876997db774ae77572a1e9d649c175..37e297d7feb7fa4e7b537cbe2e9468952129ca77 100644
(file)
--- a/
drivers/video/epson1355fb.c
+++ b/
drivers/video/epson1355fb.c
@@
-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);