Commit ff6a4cd2 authored by Luca Tettamanti's avatar Luca Tettamanti Committed by Stefan Richter

sbp2: make 1bit bitfield unsigned

A signed single-bit bitfield doesn't make much sense. Make it unsigned.
Signed-off-by: default avatarLuca Tettamanti <kronos.it@gmail.com>
Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent 4e834da1
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment