diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-08-21 18:31:05 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-09-27 14:58:55 -0400 |
commit | 55359021b9a75a6d61a49ca8b9a1209793cd55f7 (patch) | |
tree | 6629b914a76f169184e52bc08d9ef0a0316f1d33 /drivers/fc4 | |
parent | 095bc335360a51623dd8571839bbf465851a7f4b (diff) |
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 <snakebyte@gmx.de>
Acked-by: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/fc4')
0 files changed, 0 insertions, 0 deletions