diff options
Diffstat (limited to 'drivers/usb/misc/usbtest.c')
-rw-r--r-- | drivers/usb/misc/usbtest.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c index a9f06d76960f..3dab0c0b196f 100644 --- a/drivers/usb/misc/usbtest.c +++ b/drivers/usb/misc/usbtest.c | |||
@@ -213,8 +213,9 @@ static struct urb *simple_alloc_urb ( | |||
213 | } | 213 | } |
214 | 214 | ||
215 | static unsigned pattern = 0; | 215 | static unsigned pattern = 0; |
216 | module_param (pattern, uint, S_IRUGO); | 216 | static unsigned mod_pattern; |
217 | MODULE_PARM_DESC(pattern, "i/o pattern (0 == zeroes)"); | 217 | module_param_named(pattern, mod_pattern, uint, S_IRUGO | S_IWUSR); |
218 | MODULE_PARM_DESC(mod_pattern, "i/o pattern (0 == zeroes)"); | ||
218 | 219 | ||
219 | static inline void simple_fill_buf (struct urb *urb) | 220 | static inline void simple_fill_buf (struct urb *urb) |
220 | { | 221 | { |
@@ -1567,6 +1568,8 @@ usbtest_ioctl (struct usb_interface *intf, unsigned int code, void *buf) | |||
1567 | 1568 | ||
1568 | // FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. | 1569 | // FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. |
1569 | 1570 | ||
1571 | pattern = mod_pattern; | ||
1572 | |||
1570 | if (code != USBTEST_REQUEST) | 1573 | if (code != USBTEST_REQUEST) |
1571 | return -EOPNOTSUPP; | 1574 | return -EOPNOTSUPP; |
1572 | 1575 | ||