aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/misc/usbtest.c
diff options
context:
space:
mode:
authorPeter Chen <[email protected]>2015-09-01 01:47:59 +0000
committerFelipe Balbi <[email protected]>2015-09-27 15:54:31 +0000
commita724ddfb17e0519d2c2b6e09a96b1b94eff6b801 (patch)
tree91882cb114b3518ffe20b93aa34f685074941174 /drivers/usb/misc/usbtest.c
parentusb: misc: usbtest: allocate size of urb array according to user parameter (diff)
downloadkernel-a724ddfb17e0519d2c2b6e09a96b1b94eff6b801.tar.gz
kernel-a724ddfb17e0519d2c2b6e09a96b1b94eff6b801.zip
usb: misc: usbtest: delete useless memset for urbs array
The element of urbs array will be initialized at below code at once. for (i = 0; i < param->sglen; i++) { urbs[i] = iso_alloc_urb(udev, pipe, desc, param->length, offset); Acked-by: Michal Nazarewicz <[email protected]> Signed-off-by: Peter Chen <[email protected]> Signed-off-by: Felipe Balbi <[email protected]>
Diffstat (limited to 'drivers/usb/misc/usbtest.c')
-rw-r--r--drivers/usb/misc/usbtest.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c
index 8f294d716369..819b4b1f327b 100644
--- a/drivers/usb/misc/usbtest.c
+++ b/drivers/usb/misc/usbtest.c
@@ -1920,7 +1920,6 @@ test_iso_queue(struct usbtest_dev *dev, struct usbtest_param *param,
init_completion(&context.done);
spin_lock_init(&context.lock);
- memset(urbs, 0, sizeof(urbs));
udev = testdev_to_usbdev(dev);
dev_info(&dev->intf->dev,
"iso period %d %sframes, wMaxPacket %d, transactions: %d\n",