aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn/hisax/isdnhdlc.h
diff options
context:
space:
mode:
authorMariusz Kozlowski <m.kozlowski@tuxland.pl>2006-12-06 20:38:04 -0800
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-07 08:39:38 -0800
commit940cc2df935d00e704c7b8366bdaedda379abf85 (patch)
tree6e6b90fb0eb9defe7d7dc4562d9ec13bbc91734a /drivers/isdn/hisax/isdnhdlc.h
parent[PATCH] The scheduled removal of some OSS options (diff)
downloadlinux-dev-940cc2df935d00e704c7b8366bdaedda379abf85.tar.xz
linux-dev-940cc2df935d00e704c7b8366bdaedda379abf85.zip
[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/isdnhdlc.h')
-rw-r--r--drivers/isdn/hisax/isdnhdlc.h8
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 {
unsigned char shift_reg;
unsigned char ffvalue;
- int data_received:1; // set if transferring data
- int dchannel:1; // set if D channel (send idle instead of flags)
- int do_adapt56:1; // set if 56K adaptation
- int do_closing:1; // set if in closing phase (need to send CRC + flag
+ unsigned int data_received:1; // set if transferring data
+ unsigned int dchannel:1; // set if D channel (send idle instead of flags)
+ unsigned int do_adapt56:1; // set if 56K adaptation
+ unsigned int do_closing:1; // set if in closing phase (need to send CRC + flag
};