The patch titled fbdev: bfin-t350mcqb-fb: avoid unused warnings in backlight code has been added to the -mm tree. Its filename is fbdev-bfin-t350mcqb-fb-avoid-unused-warnings-in-backlight-code.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: fbdev: bfin-t350mcqb-fb: avoid unused warnings in backlight code From: Mike Frysinger <vapier@xxxxxxxxxx> The current backlight code is stubbed out, so the new props changes added some warnings about unused label/prop. Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/bfin-t350mcqb-fb.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff -puN drivers/video/bfin-t350mcqb-fb.c~fbdev-bfin-t350mcqb-fb-avoid-unused-warnings-in-backlight-code drivers/video/bfin-t350mcqb-fb.c --- a/drivers/video/bfin-t350mcqb-fb.c~fbdev-bfin-t350mcqb-fb-avoid-unused-warnings-in-backlight-code +++ a/drivers/video/bfin-t350mcqb-fb.c @@ -420,7 +420,9 @@ static irqreturn_t bfin_t350mcqb_irq_err static int __devinit bfin_t350mcqb_probe(struct platform_device *pdev) { +#ifndef NO_BL_SUPPORT struct backlight_properties props; +#endif struct bfin_t350mcqbfb_info *info; struct fb_info *fbinfo; int ret; @@ -550,7 +552,8 @@ static int __devinit bfin_t350mcqb_probe printk(KERN_ERR DRIVER_NAME ": unable to register backlight.\n"); ret = -EINVAL; - goto out9; + unregister_framebuffer(fbinfo); + goto out8; } lcd_dev = lcd_device_register(DRIVER_NAME, NULL, &bfin_lcd_ops); @@ -559,8 +562,6 @@ static int __devinit bfin_t350mcqb_probe return 0; -out9: - unregister_framebuffer(fbinfo); out8: free_irq(info->irq, info); out7: _ Patches currently in -mm which might be from vapier@xxxxxxxxxx are origin.patch nommu-allow-private-mappings-of-read-only-devices.patch linux-next.patch fbdev-bfin-t350mcqb-fb-avoid-unused-warnings-in-backlight-code.patch fbdev-bf54x-lq043fb-fix-unused-warnings-with-backlight-code.patch ptrace-unify-fdpic-implementations.patch blackfin-use-use-asm-generic-scatterlisth.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