[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1290254484-12141-1-git-send-email-mk@lab.zgora.pl>
Date: Sat, 20 Nov 2010 13:01:24 +0100
From: Mariusz Kozlowski <mk@....zgora.pl>
To: Richard Purdie <rpurdie@...ys.net>
Cc: linux-kernel@...r.kernel.org, Mariusz Kozlowski <mk@....zgora.pl>
Subject: [PATCH] backlight: make 1-bit signed filed unsigned in l4f00242t03.c
Fixes sparse warning:
drivers/video/backlight/l4f00242t03.c:28:21: error: dubious one-bit
signed bitfield
Signed-off-by: Mariusz Kozlowski <mk@....zgora.pl>
---
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;
};
--
1.7.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists