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:

gecommit door
Linus Torvalds

bovenliggende
0cc0844bc6
commit
64b33619a3
@@ -626,7 +626,7 @@ typedef struct {
|
||||
|
||||
struct amb_dev {
|
||||
u8 irq;
|
||||
long flags;
|
||||
unsigned long flags;
|
||||
u32 iobase;
|
||||
u32 * membase;
|
||||
|
||||
|
@@ -423,7 +423,7 @@ struct hrz_dev {
|
||||
wait_queue_head_t tx_queue;
|
||||
|
||||
u8 irq;
|
||||
long flags;
|
||||
unsigned long flags;
|
||||
u8 tx_last;
|
||||
u8 tx_idle;
|
||||
|
||||
|
@@ -136,7 +136,7 @@ static int sizeof_bootstrap = 375;
|
||||
|
||||
|
||||
static struct dsp56k_device {
|
||||
long in_use;
|
||||
unsigned long in_use;
|
||||
long maxio, timeout;
|
||||
int tx_wsize, rx_wsize;
|
||||
} dsp56k;
|
||||
|
@@ -99,7 +99,7 @@ struct Host {
|
||||
struct UnixRup UnixRups[MAX_RUP + LINKS_PER_UNIT];
|
||||
int timeout_id; /* For calling 100 ms delays */
|
||||
int timeout_sem; /* For calling 100 ms delays */
|
||||
long locks; /* long req'd for set_bit --RR */
|
||||
unsigned long locks; /* long req'd for set_bit --RR */
|
||||
char ____end_marker____;
|
||||
};
|
||||
#define Control CardP->DpControl
|
||||
|
@@ -71,7 +71,7 @@ struct riscom_port {
|
||||
struct tty_struct * tty;
|
||||
int count;
|
||||
int blocked_open;
|
||||
long event; /* long req'd for set_bit --RR */
|
||||
unsigned long event; /* long req'd for set_bit --RR */
|
||||
int timeout;
|
||||
int close_delay;
|
||||
unsigned char * xmit_buf;
|
||||
|
@@ -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 {
|
||||
|
@@ -91,7 +91,7 @@ typedef struct _fc_channel {
|
||||
fcp_cmd *scsi_cmd_pool;
|
||||
char *scsi_rsp_pool;
|
||||
dma_addr_t dma_scsi_cmd, dma_scsi_rsp;
|
||||
long *scsi_bitmap;
|
||||
unsigned long *scsi_bitmap;
|
||||
long scsi_bitmap_end;
|
||||
int scsi_free;
|
||||
int (*encode_addr)(struct scsi_cmnd *, u16 *, struct _fc_channel *, fcp_cmnd *);
|
||||
|
@@ -202,7 +202,7 @@ struct Layer1 {
|
||||
void *hardware;
|
||||
struct BCState *bcs;
|
||||
struct PStack **stlistp;
|
||||
long Flags;
|
||||
unsigned long Flags;
|
||||
struct FsmInst l1m;
|
||||
struct FsmTimer timer;
|
||||
void (*l1l2) (struct PStack *, int, void *);
|
||||
|
@@ -56,7 +56,7 @@ struct hisax_d_if {
|
||||
struct IsdnCardState *cs;
|
||||
struct hisax_b_if *b_if[2];
|
||||
struct sk_buff_head erq;
|
||||
long ph_state;
|
||||
unsigned long ph_state;
|
||||
};
|
||||
|
||||
int hisax_register(struct hisax_d_if *hisax_if, struct hisax_b_if *b_if[],
|
||||
|
@@ -183,7 +183,7 @@ static struct card {
|
||||
short addr_offset;
|
||||
unsigned char *vendor_id;
|
||||
char *cardname;
|
||||
long config;
|
||||
unsigned long config;
|
||||
} cards[] = {
|
||||
{
|
||||
.id0 = NI65_ID0,
|
||||
|
@@ -154,8 +154,8 @@ struct cosa_data {
|
||||
int nchannels; /* # of channels on this card */
|
||||
int driver_status; /* For communicating with firmware */
|
||||
int firmware_status; /* Downloaded, reseted, etc. */
|
||||
long int rxbitmap, txbitmap; /* Bitmap of channels who are willing to send/receive data */
|
||||
long int rxtx; /* RX or TX in progress? */
|
||||
unsigned long rxbitmap, txbitmap;/* Bitmap of channels who are willing to send/receive data */
|
||||
unsigned long rxtx; /* RX or TX in progress? */
|
||||
int enabled;
|
||||
int usage; /* usage count */
|
||||
int txchan, txsize, rxsize;
|
||||
|
@@ -661,7 +661,7 @@ struct local_info {
|
||||
#define HOSTAP_BITS_TRANSMIT 0
|
||||
#define HOSTAP_BITS_BAP_TASKLET 1
|
||||
#define HOSTAP_BITS_BAP_TASKLET2 2
|
||||
long bits;
|
||||
unsigned long bits;
|
||||
|
||||
struct ap_data *ap;
|
||||
|
||||
|
@@ -33,8 +33,8 @@ typedef struct ray_dev_t {
|
||||
void __iomem *rmem; /* pointer to receive buffer window */
|
||||
struct pcmcia_device *finder; /* pointer back to struct pcmcia_device for card */
|
||||
struct timer_list timer;
|
||||
long tx_ccs_lock;
|
||||
long ccs_lock;
|
||||
unsigned long tx_ccs_lock;
|
||||
unsigned long ccs_lock;
|
||||
int dl_param_ccs;
|
||||
union {
|
||||
struct b4_startup_params b4;
|
||||
|
Verwijs in nieuw issue
Block a user