From: Eric Sesterhenn Date: Mon, 21 Aug 2006 22:31:05 +0000 (-0700) Subject: USB: fix signedness issue in drivers/usb/gadget/ether.c X-Git-Tag: Ubuntu-snapdragon-4.4.0-1050.54~45364^2~50 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=55359021b9a75a6d61a49ca8b9a1209793cd55f7;p=mirror_ubuntu-artful-kernel.git USB: fix signedness issue in drivers/usb/gadget/ether.c another gcc 4.1 signdness warning: drivers/usb/gadget/ether.c:2028: warning: comparison of unsigned expression < 0 is always false length is assigned the value of usb_ep_queue() which returns an int. Directly after this it is checked for < 0, which can never be true. Making length an int makes the error check work again. Signed-off-by: Eric Sesterhenn Acked-by: David Brownell Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/gadget/ether.c b/drivers/usb/gadget/ether.c index fed484da593c..1cc3c0227d10 100644 --- a/drivers/usb/gadget/ether.c +++ b/drivers/usb/gadget/ether.c @@ -2014,7 +2014,7 @@ rndis_control_ack_complete (struct usb_ep *ep, struct usb_request *req) static int rndis_control_ack (struct net_device *net) { struct eth_dev *dev = netdev_priv(net); - u32 length; + int length; struct usb_request *resp = dev->stat_req; /* in case RNDIS calls this after disconnect */