The patch titled pm2fb: fix of jumps in pm2fb_probe has been added to the -mm tree. Its filename is pm2fb-fix-of-jumps-in-pm2fb_probe.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: pm2fb: fix of jumps in pm2fb_probe From: Krzysztof Helt <krzysztof.h1@xxxxx> This patch fixes incorrect targets of jumps when an error occurs in the pm2fb_probe. Signed-off-by: Krzysztof Helt <krzysztof.h1@xxxxx> Signed-off-by: Antonino Daplas <adaplas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/pm2fb.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/video/pm2fb.c~pm2fb-fix-of-jumps-in-pm2fb_probe drivers/video/pm2fb.c --- a/drivers/video/pm2fb.c~pm2fb-fix-of-jumps-in-pm2fb_probe +++ a/drivers/video/pm2fb.c @@ -1335,10 +1335,10 @@ static int __devinit pm2fb_probe(struct 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); _ Patches currently in -mm which might be from krzysztof.h1@xxxxx are skeletonfb-various-corrections.patch pm2fb-3dlabs-permedia-2v-reference-board-added.patch pm2fb-permedia-2v-memory-clock-setting.patch pm2fb-pixclock-setting-restriction.patch pm2fb-reset-transparency-settings.patch pm2fb-memclock-setting-corrections.patch pm2fb-accelerated-fillrect-and-copyarea.patch skeletonfb-more-corrections.patch pm2fb-removal-of-pm2fb_par-fields.patch skeletonfb-improvements.patch pm2fb-fix-of-jumps-in-pm2fb_probe.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html