Skip to content

Commit

Permalink
pm2fb: fix of jumps in pm2fb_probe
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Krzysztof Helt authored and Linus Torvalds committed May 8, 2007
1 parent 19c1a8b commit 435d56f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/pm2fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1335,10 +1335,10 @@ static int __devinit pm2fb_probe(struct pci_dev *pdev,
info->var = pm2fb_var;

if (fb_alloc_cmap(&info->cmap, 256, 0) < 0)
goto err_exit_all;
goto err_exit_both;

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",
info->node, info->fix.id, pm2fb_fix.smem_len / 1024);
Expand Down

0 comments on commit 435d56f

Please sign in to comment.