From: Randy Dunlap <[EMAIL PROTECTED]>

A 1-bit bitfield has no room for a sign bit.
drivers/cpuidle/governors/ladder.c:54:16: error: dubious bitfield without 
explicit `signed' or `unsigned'

Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
---
 drivers/cpuidle/governors/ladder.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-2.6.21-rc4-mm1.orig/drivers/cpuidle/governors/ladder.c
+++ linux-2.6.21-rc4-mm1/drivers/cpuidle/governors/ladder.c
@@ -51,7 +51,7 @@ struct ladder_device_state {
 
 struct ladder_device {
        struct ladder_device_state states[CPUIDLE_STATE_MAX];
-       int bm_check:1;
+       unsigned int bm_check:1;
        unsigned long bm_check_timestamp;
        unsigned long bm_activity; /* FIXME: bm activity should be global */
        int last_state_idx;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to