This patch fixes the following checkpatch warning for usbip files
WARNING: Prefer 'unsigned int' to bare use of 'unsigned'

Signed-off-by: Jai Krishna <[email protected]>
---
 drivers/usb/usbip/vudc_dev.c      | 8 ++++----
 drivers/usb/usbip/vudc_transfer.c | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/usb/usbip/vudc_dev.c b/drivers/usb/usbip/vudc_dev.c
index 7091848..c5375e7 100644
--- a/drivers/usb/usbip/vudc_dev.c
+++ b/drivers/usb/usbip/vudc_dev.c
@@ -242,10 +242,10 @@ static const struct usb_gadget_ops vgadget_ops = {
 static int vep_enable(struct usb_ep *_ep,
                const struct usb_endpoint_descriptor *desc)
 {
-       struct vep *ep;
-       struct vudc *udc;
-       unsigned maxp;
-       unsigned long flags;
+       struct vep      *ep;
+       struct vudc     *udc;
+       unsigned int    maxp;
+       unsigned long   flags;
 
        ep = to_vep(_ep);
        udc = ep_to_vudc(ep);
diff --git a/drivers/usb/usbip/vudc_transfer.c 
b/drivers/usb/usbip/vudc_transfer.c
index aba6bd4..8b3dacc 100644
--- a/drivers/usb/usbip/vudc_transfer.c
+++ b/drivers/usb/usbip/vudc_transfer.c
@@ -73,8 +73,8 @@ static int handle_control_request(struct vudc *udc, struct 
urb *urb,
 {
        struct vep      *ep2;
        int             ret_val = 1;
-       unsigned        w_index;
-       unsigned        w_value;
+       unsigned int    w_index;
+       unsigned int    w_value;
 
        w_index = le16_to_cpu(setup->wIndex);
        w_value = le16_to_cpu(setup->wValue);
@@ -200,7 +200,7 @@ static int transfer(struct vudc *udc,
 top:
        /* if there's no request queued, the device is NAKing; return */
        list_for_each_entry(req, &ep->req_queue, req_entry) {
-               unsigned        host_len, dev_len, len;
+               unsigned int    host_len, dev_len, len;
                void            *ubuf_pos, *rbuf_pos;
                int             is_short, to_host;
                int             rescan = 0;
-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to