Re: [PATCH] backlight: make 1-bit signed filed unsigned inl4f00242t03.c

From: Richard Purdie
Date: Mon Nov 22 2010 - 05:07:18 EST


On Sat, 2010-11-20 at 13:01 +0100, Mariusz Kozlowski wrote:
> 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>
> ---
> drivers/video/backlight/l4f00242t03.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/video/backlight/l4f00242t03.c b/drivers/video/backlight/l4f00242t03.c
> index c67801e..6d9ba0e 100644
> --- a/drivers/video/backlight/l4f00242t03.c
> +++ b/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;
> };


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/