The patch titled drivers/video/backlight/l4f00242t03.c: make 1-bit signed field unsigned has been added to the -mm tree. Its filename is drivers-video-backlight-l4f00242t03c-make-1-bit-signed-field-unsigned.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: drivers/video/backlight/l4f00242t03.c: make 1-bit signed field unsigned From: Mariusz Kozlowski <mk@xxxxxxxxxxxx> Fixes sparse warning: drivers/video/backlight/l4f00242t03.c:28:21: error: dubious one-bit signed bitfield Signed-off-by: Mariusz Kozlowski <mk@xxxxxxxxxxxx> Acked-by: Richard Purdie <rpurdie@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/backlight/l4f00242t03.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/backlight/l4f00242t03.c~drivers-video-backlight-l4f00242t03c-make-1-bit-signed-field-unsigned drivers/video/backlight/l4f00242t03.c --- a/drivers/video/backlight/l4f00242t03.c~drivers-video-backlight-l4f00242t03c-make-1-bit-signed-field-unsigned +++ a/drivers/video/backlight/l4f00242t03.c @@ -25,7 +25,7 @@ struct l4f00242t03_priv { struct spi_device *spi; struct lcd_device *ld; - int lcd_on:1; + unsigned int lcd_on:1; struct regulator *io_reg; struct regulator *core_reg; }; _ Patches currently in -mm which might be from mk@xxxxxxxxxxxx are drivers-video-backlight-l4f00242t03c-make-1-bit-signed-field-unsigned.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