ChangeSet 1.2231.1.237, 2005/03/28 20:22:13-08:00, [EMAIL PROTECTED]
[PATCH] dvb: sparse warnings on one-bit bitfields
Remove some sparse warnings on one-bit bitfields.
Signed-off-by: Peter Hagervall <[EMAIL PROTECTED]>
Signed-off-by: Johannes Stezenbach <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
dvb_ca_en50221.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff -Nru a/drivers/media/dvb/dvb-core/dvb_ca_en50221.c
b/drivers/media/dvb/dvb-core/dvb_ca_en50221.c
--- a/drivers/media/dvb/dvb-core/dvb_ca_en50221.c 2005-03-28 22:01:07
-08:00
+++ b/drivers/media/dvb/dvb-core/dvb_ca_en50221.c 2005-03-28 22:01:07
-08:00
@@ -148,13 +148,13 @@
wait_queue_head_t thread_queue;
/* Flag indicating when thread should exit */
- int exit:1;
+ unsigned int exit:1;
/* Flag indicating if the CA device is open */
- int open:1;
+ unsigned int open:1;
/* Flag indicating the thread should wake up now */
- int wakeup:1;
+ unsigned int wakeup:1;
/* Delay the main thread should use */
unsigned long delay;
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html