diff options
author | Luca Tettamanti <kronos.it@gmail.com> | 2006-11-15 13:14:15 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2006-12-07 17:05:47 -0500 |
commit | ff6a4cd2e18430f04e59382103c7b1f53ba114e0 (patch) | |
tree | 341cbb10a1c103ca5e3f66786a19d1bee93846e3 | |
parent | 4e834da1da2d7e80547e493c4b21c809dcb0ae09 (diff) |
sbp2: make 1bit bitfield unsigned
A signed single-bit bitfield doesn't make much sense. Make it unsigned.
Signed-off-by: Luca Tettamanti <kronos.it@gmail.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
-rw-r--r-- | drivers/ieee1394/sbp2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ieee1394/sbp2.h b/drivers/ieee1394/sbp2.h index 38ca1195e8ee..ef24d630a577 100644 --- a/drivers/ieee1394/sbp2.h +++ b/drivers/ieee1394/sbp2.h | |||
@@ -302,7 +302,7 @@ struct sbp2_lu { | |||
302 | u64 status_fifo_addr; | 302 | u64 status_fifo_addr; |
303 | 303 | ||
304 | /* Waitqueue flag for logins, reconnects, logouts, query logins */ | 304 | /* Waitqueue flag for logins, reconnects, logouts, query logins */ |
305 | int access_complete:1; | 305 | unsigned int access_complete:1; |
306 | 306 | ||
307 | /* Pool of command ORBs for this logical unit */ | 307 | /* Pool of command ORBs for this logical unit */ |
308 | spinlock_t cmd_orb_lock; | 308 | spinlock_t cmd_orb_lock; |