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:
@@ -197,7 +197,7 @@ struct agp_file_private {
|
||||
struct agp_file_private *next;
|
||||
struct agp_file_private *prev;
|
||||
pid_t my_pid;
|
||||
long access_flags; /* long req'd for set_bit --RR */
|
||||
unsigned long access_flags; /* long req'd for set_bit --RR */
|
||||
};
|
||||
|
||||
struct agp_front_data {
|
||||
|
@@ -200,7 +200,7 @@ struct hdlcdrv_state {
|
||||
|
||||
struct hdlcdrv_hdlcrx {
|
||||
struct hdlcdrv_hdlcbuffer hbuf;
|
||||
long in_hdlc_rx;
|
||||
unsigned long in_hdlc_rx;
|
||||
/* 0 = sync hunt, != 0 receiving */
|
||||
int rx_state;
|
||||
unsigned int bitstream;
|
||||
|
@@ -1,7 +1,7 @@
|
||||
u32 scx200_gpio_configure(unsigned index, u32 set, u32 clear);
|
||||
|
||||
extern unsigned scx200_gpio_base;
|
||||
extern long scx200_gpio_shadow[2];
|
||||
extern unsigned long scx200_gpio_shadow[2];
|
||||
extern struct nsc_gpio_ops scx200_gpio_ops;
|
||||
|
||||
#define scx200_gpio_present() (scx200_gpio_base!=0)
|
||||
@@ -9,7 +9,7 @@ extern struct nsc_gpio_ops scx200_gpio_ops;
|
||||
/* Definitions to make sure I do the same thing in all functions */
|
||||
#define __SCx200_GPIO_BANK unsigned bank = index>>5
|
||||
#define __SCx200_GPIO_IOADDR unsigned short ioaddr = scx200_gpio_base+0x10*bank
|
||||
#define __SCx200_GPIO_SHADOW long *shadow = scx200_gpio_shadow+bank
|
||||
#define __SCx200_GPIO_SHADOW unsigned long *shadow = scx200_gpio_shadow+bank
|
||||
#define __SCx200_GPIO_INDEX index &= 31
|
||||
|
||||
#define __SCx200_GPIO_OUT __asm__ __volatile__("outsl":"=mS" (shadow):"d" (ioaddr), "0" (shadow))
|
||||
@@ -42,7 +42,7 @@ static inline void scx200_gpio_set_high(unsigned index) {
|
||||
__SCx200_GPIO_IOADDR;
|
||||
__SCx200_GPIO_SHADOW;
|
||||
__SCx200_GPIO_INDEX;
|
||||
set_bit(index, shadow);
|
||||
set_bit(index, shadow); /* __set_bit()? */
|
||||
__SCx200_GPIO_OUT;
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ static inline void scx200_gpio_set_low(unsigned index) {
|
||||
__SCx200_GPIO_IOADDR;
|
||||
__SCx200_GPIO_SHADOW;
|
||||
__SCx200_GPIO_INDEX;
|
||||
clear_bit(index, shadow);
|
||||
clear_bit(index, shadow); /* __clear_bit()? */
|
||||
__SCx200_GPIO_OUT;
|
||||
}
|
||||
|
||||
|
@@ -75,7 +75,7 @@ struct stlport {
|
||||
int ioaddr;
|
||||
int uartaddr;
|
||||
unsigned int pagenr;
|
||||
long istate;
|
||||
unsigned long istate;
|
||||
int flags;
|
||||
int baud_base;
|
||||
int custom_divisor;
|
||||
|
Reference in New Issue
Block a user