[PATCH 1/5][Precise] UBUNTU: SAUCE: (drop after 3.3) toshiba_acpi: make one-bit bitfields unsigned

Seth Forshee seth.forshee at canonical.com
Thu Mar 29 17:02:04 UTC 2012


From: Dan Carpenter <dan.carpenter at oracle.com>

This doesn't change how the code works, but it silences a Sparse
complaint:
drivers/platform/x86/toshiba_acpi.c:121:37: error: dubious one-bit signed bitfield

Signed-off-by: Dan Carpenter <dan.carpenter at oracle.com>
Signed-off-by: Matthew Garrett <mjg at redhat.com>
(cherry picked from commit 592b746c55b63770da25148ea3b56ed463a596b2)
BugLink: http://bugs.launchpad.net/bugs/810015
Signed-off-by: Seth Forshee <seth.forshee at canonical.com>
---
 drivers/platform/x86/toshiba_acpi.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c
index dcdc1f4..eab5e11 100644
--- a/drivers/platform/x86/toshiba_acpi.c
+++ b/drivers/platform/x86/toshiba_acpi.c
@@ -118,10 +118,10 @@ struct toshiba_acpi_dev {
 	int last_key_event;
 	int key_event_valid;
 
-	int illumination_supported:1;
-	int video_supported:1;
-	int fan_supported:1;
-	int system_event_supported:1;
+	unsigned int illumination_supported:1;
+	unsigned int video_supported:1;
+	unsigned int fan_supported:1;
+	unsigned int system_event_supported:1;
 
 	struct mutex mutex;
 };
-- 
1.7.9.1





More information about the kernel-team mailing list