diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 14:35:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 15:41:52 -0400 |
commit | 64a6f9500d8e8a8e1b1adc2120e56cc88df5727f (patch) | |
tree | 19949f0c50538e08b7e434db7860bef02d8aa611 /drivers/pcmcia/i82365.c | |
parent | 64b33619a30ff18c1535ee779572ecffcc4711d2 (diff) |
signedness: module_param_array nump argument
... should be unsigned int
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pcmcia/i82365.c')
-rw-r--r-- | drivers/pcmcia/i82365.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/i82365.c b/drivers/pcmcia/i82365.c index 71b33707117f..839bb1c0db58 100644 --- a/drivers/pcmcia/i82365.c +++ b/drivers/pcmcia/i82365.c | |||
@@ -101,7 +101,7 @@ static int ignore = -1; | |||
101 | /* Bit map or list of interrupts to choose from */ | 101 | /* Bit map or list of interrupts to choose from */ |
102 | static u_int irq_mask = 0xffff; | 102 | static u_int irq_mask = 0xffff; |
103 | static int irq_list[16]; | 103 | static int irq_list[16]; |
104 | static int irq_list_count; | 104 | static unsigned int irq_list_count; |
105 | /* The card status change interrupt -- 0 means autoselect */ | 105 | /* The card status change interrupt -- 0 means autoselect */ |
106 | static int cs_irq = 0; | 106 | static int cs_irq = 0; |
107 | 107 | ||