The patch titled fbmon: remove unnecessary local variable has been added to the -mm tree. Its filename is fbmon-remove-unnecessary-local-variable.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: fbmon: remove unnecessary local variable From: Andre Haupt <andre@xxxxxxxxxxxxxxx> This fixes a sparse warning about symbol 'i' shadowing an earlier one. Signed-off-by: Andre Haupt <andre@xxxxxxxxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/fbmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/fbmon.c~fbmon-remove-unnecessary-local-variable drivers/video/fbmon.c --- a/drivers/video/fbmon.c~fbmon-remove-unnecessary-local-variable +++ a/drivers/video/fbmon.c @@ -686,7 +686,7 @@ static int fb_get_monitor_limits(unsigne /* estimate monitor limits based on modes supported */ if (retval) { struct fb_videomode *modes, *mode; - int num_modes, i, hz, hscan, pixclock; + int num_modes, hz, hscan, pixclock; int vtotal, htotal; modes = fb_create_modedb(edid, &num_modes); _ Patches currently in -mm which might be from andre@xxxxxxxxxxxxxxx are git-arm.patch sdio_uart-fix-sign-of-paramter-status-in-sdio_uart_receive_chars.patch fbmon-remove-unnecessary-local-variable.patch fbmon-cleanup-trailing-whitespaces.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