You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
long vs. unsigned long - low-hanging fruits in drivers
deal with signedness of the stuff passed to set_bit() et.al. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
+2
-2
@@ -27,7 +27,7 @@ struct sx_port {
|
||||
int c_dcd;
|
||||
struct sx_board *board;
|
||||
int line;
|
||||
long locks;
|
||||
unsigned long locks;
|
||||
};
|
||||
|
||||
struct sx_board {
|
||||
@@ -45,7 +45,7 @@ struct sx_board {
|
||||
int poll;
|
||||
int ta_type;
|
||||
struct timer_list timer;
|
||||
long locks;
|
||||
unsigned long locks;
|
||||
};
|
||||
|
||||
struct vpd_prom {
|
||||
|
||||
Reference in New Issue
Block a user