staging: usbip: userspace: libsrc: (foo*) should be (foo *)
authorKurt Kanzenbach <ly80toro@cip.cs.fau.de>
Fri, 22 Feb 2013 11:13:28 +0000 (12:13 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 11 Mar 2013 16:45:28 +0000 (09:45 -0700)
This patch fixes the following checkpatch error:
-ERROR: "(foo*)" should be "(foo *)"

Signed-off-by: Kurt Kanzenbach <ly80toro@cip.cs.fau.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/usbip/userspace/libsrc/vhci_driver.c

index 7a5da58..b9c6e2a 100644 (file)
@@ -36,7 +36,7 @@ static struct usbip_imported_device *imported_device_init(struct usbip_imported_
                                goto err;
 
                        memcpy(new_cdev, cdev, sizeof(*new_cdev));
-                       dlist_unshift(idev->cdev_list, (void*) new_cdev);
+                       dlist_unshift(idev->cdev_list, (void *) new_cdev);
                }
        }