diff options
author | Mariusz Kozlowski <m.kozlowski@tuxland.pl> | 2006-12-06 23:38:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:38 -0500 |
commit | 940cc2df935d00e704c7b8366bdaedda379abf85 (patch) | |
tree | 6e6b90fb0eb9defe7d7dc4562d9ec13bbc91734a /drivers/isdn/hisax | |
parent | c67220480e0dc6442851691c81c2ff7aa48f9d8f (diff) |
[PATCH] make 1-bit bitfields unsigned
Keeps sparse happy.
Signed-of-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Cc: Russell King <rmk@arm.linux.org.uk>
Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
Acked-by: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/isdn/hisax')
-rw-r--r-- | drivers/isdn/hisax/isdnhdlc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/isdn/hisax/isdnhdlc.h b/drivers/isdn/hisax/isdnhdlc.h index 269315988dc8..5655b5f9c48e 100644 --- a/drivers/isdn/hisax/isdnhdlc.h +++ b/drivers/isdn/hisax/isdnhdlc.h | |||
@@ -41,10 +41,10 @@ struct isdnhdlc_vars { | |||
41 | unsigned char shift_reg; | 41 | unsigned char shift_reg; |
42 | unsigned char ffvalue; | 42 | unsigned char ffvalue; |
43 | 43 | ||
44 | int data_received:1; // set if transferring data | 44 | unsigned int data_received:1; // set if transferring data |
45 | int dchannel:1; // set if D channel (send idle instead of flags) | 45 | unsigned int dchannel:1; // set if D channel (send idle instead of flags) |
46 | int do_adapt56:1; // set if 56K adaptation | 46 | unsigned int do_adapt56:1; // set if 56K adaptation |
47 | int do_closing:1; // set if in closing phase (need to send CRC + flag | 47 | unsigned int do_closing:1; // set if in closing phase (need to send CRC + flag |
48 | }; | 48 | }; |
49 | 49 | ||
50 | 50 | ||