You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
pm2fb: fix of jumps in pm2fb_probe
This patch fixes incorrect targets of jumps when an error occurs in the pm2fb_probe. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> 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:
committed by
Linus Torvalds
parent
19c1a8b312
commit
435d56fcd4
@@ -1335,10 +1335,10 @@ static int __devinit pm2fb_probe(struct pci_dev *pdev,
|
|||||||
info->var = pm2fb_var;
|
info->var = pm2fb_var;
|
||||||
|
|
||||||
if (fb_alloc_cmap(&info->cmap, 256, 0) < 0)
|
if (fb_alloc_cmap(&info->cmap, 256, 0) < 0)
|
||||||
goto err_exit_all;
|
goto err_exit_both;
|
||||||
|
|
||||||
if (register_framebuffer(info) < 0)
|
if (register_framebuffer(info) < 0)
|
||||||
goto err_exit_both;
|
goto err_exit_all;
|
||||||
|
|
||||||
printk(KERN_INFO "fb%d: %s frame buffer device, memory = %dK.\n",
|
printk(KERN_INFO "fb%d: %s frame buffer device, memory = %dK.\n",
|
||||||
info->node, info->fix.id, pm2fb_fix.smem_len / 1024);
|
info->node, info->fix.id, pm2fb_fix.smem_len / 1024);
|
||||||
|
|||||||
Reference in New Issue
Block a user