The patch titled Subject: drivers/video/backlight/lp855x_bl.c: silence a compiler warning has been removed from the -mm tree. Its filename was backlight-lp855x_bl-silence-a-compiler-warning.patch This patch was dropped because it was folded into backlight-new-backlight-driver-for-lp855x-devices.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ From: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Subject: drivers/video/backlight/lp855x_bl.c: silence a compiler warning Gcc 4.6.2 complains that "end" can be used without being initialized: drivers/video/backlight/lp855x_bl.c: In function `lp855x_init_registers': drivers/video/backlight/lp855x_bl.c:78:32: warning: `end' may be used uninitialized in this function [-Wuninitialized] drivers/video/backlight/lp855x_bl.c:67:12: note: `end' was declared here I've modified the function to return invalid if we don't recognize the id string. Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Acked-by: Milo(Woogyom) Kim <milo.kim@xxxxxx> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/backlight/lp855x_bl.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN drivers/video/backlight/lp855x_bl.c~backlight-lp855x_bl-silence-a-compiler-warning drivers/video/backlight/lp855x_bl.c --- a/drivers/video/backlight/lp855x_bl.c~backlight-lp855x_bl-silence-a-compiler-warning +++ a/drivers/video/backlight/lp855x_bl.c @@ -73,6 +73,8 @@ static int lp855x_is_valid_rom_area(stru } else if (strstr(id, "lp8556")) { start = EPROM_START; end = EPROM_END; + } else { + return 0; } return (addr >= start && addr <= end) ? 1 : 0; _ Patches currently in -mm which might be from dan.carpenter@xxxxxxxxxx are origin.patch backlight-new-backlight-driver-for-lp855x-devices.patch drivers-leds-leds-tca6507c-cleanup-error-handling-in-tca6507_probe.patch epoll-remove-unneeded-variable-in-reverse_path_check.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