diff options
author | Elad Wexler <elad.wexler@gmail.com> | 2017-12-30 19:11:51 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-01-04 19:05:55 +0300 |
commit | 5c65a2fdb36b21c3f6ac534c5e12f81cf67726b1 (patch) | |
tree | 133c0f6a3ef40496be24e7ee5c7e15ebb3d3ae0b /tools/usb | |
parent | 55448d85ae2f7f2b6c43d66946146ec89b4eb088 (diff) | |
download | linux-5c65a2fdb36b21c3f6ac534c5e12f81cf67726b1.tar.xz |
tools: usb: usbip_device_driver: prefer 'unsigned int' to 'unsigned'
Fixup a coding style issue
Signed-off-by: Elad Wexler <elad.wexler@gmail.com>
Acked-by: Shuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/usb')
-rw-r--r-- | tools/usb/usbip/libsrc/usbip_device_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/usb/usbip/libsrc/usbip_device_driver.c b/tools/usb/usbip/libsrc/usbip_device_driver.c index e059b7d1ec5b..b2dac82975af 100644 --- a/tools/usb/usbip/libsrc/usbip_device_driver.c +++ b/tools/usb/usbip/libsrc/usbip_device_driver.c @@ -77,7 +77,7 @@ int read_usb_vudc_device(struct udev_device *sdev, struct usbip_usb_device *dev) const char *path, *name; char filepath[SYSFS_PATH_MAX]; struct usb_device_descriptor descr; - unsigned i; + unsigned int i; FILE *fd = NULL; struct udev_device *plat; const char *speed; |