]> nv-tegra.nvidia Code Review - linux-2.6.git/blobdiff - drivers/usb/misc/usbtest.c
usbtest: make module param pattern writeable
[linux-2.6.git] / drivers / usb / misc / usbtest.c
index a9f06d76960ffa936858adaf321d5c53d39605dd..3dab0c0b196f56a4f3c625b883d8064ffa900992 100644 (file)
@@ -213,8 +213,9 @@ static struct urb *simple_alloc_urb (
 }
 
 static unsigned pattern = 0;
-module_param (pattern, uint, S_IRUGO);
-MODULE_PARM_DESC(pattern, "i/o pattern (0 == zeroes)");
+static unsigned mod_pattern;
+module_param_named(pattern, mod_pattern, uint, S_IRUGO | S_IWUSR);
+MODULE_PARM_DESC(mod_pattern, "i/o pattern (0 == zeroes)");
 
 static inline void simple_fill_buf (struct urb *urb)
 {
@@ -1567,6 +1568,8 @@ usbtest_ioctl (struct usb_interface *intf, unsigned int code, void *buf)
 
        // FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is.
 
+       pattern = mod_pattern;
+
        if (code != USBTEST_REQUEST)
                return -EOPNOTSUPP;