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/usb/serial | |
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/usb/serial')
-rw-r--r-- | drivers/usb/serial/ti_usb_3410_5052.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c index f98626ae75fe..1f0149495fb4 100644 --- a/drivers/usb/serial/ti_usb_3410_5052.c +++ b/drivers/usb/serial/ti_usb_3410_5052.c | |||
@@ -214,13 +214,13 @@ static int debug; | |||
214 | static int low_latency = TI_DEFAULT_LOW_LATENCY; | 214 | static int low_latency = TI_DEFAULT_LOW_LATENCY; |
215 | static int closing_wait = TI_DEFAULT_CLOSING_WAIT; | 215 | static int closing_wait = TI_DEFAULT_CLOSING_WAIT; |
216 | static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT]; | 216 | static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT]; |
217 | static int vendor_3410_count; | 217 | static unsigned int vendor_3410_count; |
218 | static ushort product_3410[TI_EXTRA_VID_PID_COUNT]; | 218 | static ushort product_3410[TI_EXTRA_VID_PID_COUNT]; |
219 | static int product_3410_count; | 219 | static unsigned int product_3410_count; |
220 | static ushort vendor_5052[TI_EXTRA_VID_PID_COUNT]; | 220 | static ushort vendor_5052[TI_EXTRA_VID_PID_COUNT]; |
221 | static int vendor_5052_count; | 221 | static unsigned int vendor_5052_count; |
222 | static ushort product_5052[TI_EXTRA_VID_PID_COUNT]; | 222 | static ushort product_5052[TI_EXTRA_VID_PID_COUNT]; |
223 | static int product_5052_count; | 223 | static unsigned int product_5052_count; |
224 | 224 | ||
225 | /* supported devices */ | 225 | /* supported devices */ |
226 | /* the array dimension is the number of default entries plus */ | 226 | /* the array dimension is the number of default entries plus */ |