mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
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:
parent
4e834da1da
commit
ff6a4cd2e1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue