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 <ly80toro@cip.cs.fau.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kurt Kanzenbach 2013-02-22 12:13:28 +01:00 committed by Greg Kroah-Hartman
parent b8ab0f2bee
commit 71bd5b7672
1 changed files with 1 additions and 1 deletions

View 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);
}
}