Skip to content

Commit

Permalink
staging: usbip: userspace: libsrc: (foo*) should be (foo *)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kurt Kanzenbach authored and Greg Kroah-Hartman committed Mar 11, 2013
1 parent b8ab0f2 commit 71bd5b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/usbip/userspace/libsrc/vhci_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 71bd5b7

Please sign in to comment.