Skip to content

Commit

Permalink
sbp2: make 1bit bitfield unsigned
Browse files Browse the repository at this point in the history
A signed single-bit bitfield doesn't make much sense. Make it unsigned.

Signed-off-by: Luca Tettamanti <[email protected]>
Signed-off-by: Stefan Richter <[email protected]>
  • Loading branch information
tettamanti authored and Stefan Richter committed Dec 7, 2006
1 parent 4e834da commit ff6a4cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ieee1394/sbp2.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ff6a4cd

Please sign in to comment.