From: Kurt Kanzenbach Date: Fri, 22 Feb 2013 11:13:28 +0000 (+0100) Subject: staging: usbip: userspace: libsrc: (foo*) should be (foo *) X-Git-Tag: Ubuntu-5.10.0-12.13~19303^2~760 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=71bd5b76720493b60e9ba61e1aa4146f2edc22cd;p=mirror_ubuntu-hirsute-kernel.git staging: usbip: userspace: libsrc: (foo*) should be (foo *) This patch fixes the following checkpatch error: -ERROR: "(foo*)" should be "(foo *)" Signed-off-by: Kurt Kanzenbach Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/usbip/userspace/libsrc/vhci_driver.c b/drivers/staging/usbip/userspace/libsrc/vhci_driver.c index 7a5da58f72dd..b9c6e2abb466 100644 --- a/drivers/staging/usbip/userspace/libsrc/vhci_driver.c +++ b/drivers/staging/usbip/userspace/libsrc/vhci_driver.c @@ -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); } }