diff options
author | Aldo Iljazi <mail@aldo.io> | 2013-12-02 15:22:29 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-03 09:15:02 -0800 |
commit | 909cc6f9fa70bb8f4b183f62c6d095f2ad53deb8 (patch) | |
tree | a166d862cdfe22b600731ec0ac8c93d5b5b64f9a /drivers/staging/usbip | |
parent | 3229b869d14263c870ce0d3df18ce48fa02a40f2 (diff) | |
download | lwn-909cc6f9fa70bb8f4b183f62c6d095f2ad53deb8.tar.gz lwn-909cc6f9fa70bb8f4b183f62c6d095f2ad53deb8.zip |
Staging: usbip: vhci_hcd.c: removed a space
Line 921: Removed the space before the semicolon.
Signed-off-by: Aldo Iljazi <mail@aldo.io>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/usbip')
-rw-r--r-- | drivers/staging/usbip/vhci_hcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/usbip/vhci_hcd.c b/drivers/staging/usbip/vhci_hcd.c index aa22c631191c..72391ef87646 100644 --- a/drivers/staging/usbip/vhci_hcd.c +++ b/drivers/staging/usbip/vhci_hcd.c @@ -917,7 +917,7 @@ static void vhci_stop(struct usb_hcd *hcd) sysfs_remove_group(&vhci_dev(vhci)->kobj, &dev_attr_group); /* 2. shutdown all the ports of vhci_hcd */ - for (rhport = 0 ; rhport < VHCI_NPORTS; rhport++) { + for (rhport = 0; rhport < VHCI_NPORTS; rhport++) { struct vhci_device *vdev = &vhci->vdev[rhport]; usbip_event_add(&vdev->ud, VDEV_EVENT_REMOVED); |