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>
This commit is contained in:
Luca Tettamanti 2006-11-15 19:14:15 +01:00 committed by Stefan Richter
parent 4e834da1da
commit ff6a4cd2e1
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ struct sbp2_lu {
u64 status_fifo_addr;
/* Waitqueue flag for logins, reconnects, logouts, query logins */
int access_complete:1;
unsigned int access_complete:1;
/* Pool of command ORBs for this logical unit */
spinlock_t cmd_orb_lock;