From: Dan Carpenter Date: Tue, 9 Sep 2014 12:06:09 +0000 (+0300) Subject: usb: gadget: f_fs: signedness bug in __ffs_func_bind_do_descs() X-Git-Tag: v3.18-rc1~131^2~118^2~21 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=85b06f5e53d17c15844ef3cd45d0c7107f0ae45c;p=karo-tx-linux.git usb: gadget: f_fs: signedness bug in __ffs_func_bind_do_descs() We need "idx" to be signed for the error handling to work. Fixes: 6d5c1c77bbf9 ('usb: gadget: f_fs: fix the redundant ep files problem') Acked-by: Michal Nazarewicz Signed-off-by: Dan Carpenter Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/gadget/function/f_fs.c b/drivers/usb/gadget/function/f_fs.c index dc30adf15a01..1aad353c1f11 100644 --- a/drivers/usb/gadget/function/f_fs.c +++ b/drivers/usb/gadget/function/f_fs.c @@ -2352,7 +2352,8 @@ static int __ffs_func_bind_do_descs(enum ffs_entity_type type, u8 *valuep, struct usb_endpoint_descriptor *ds = (void *)desc; struct ffs_function *func = priv; struct ffs_ep *ffs_ep; - unsigned ep_desc_id, idx; + unsigned ep_desc_id; + int idx; static const char *speed_names[] = { "full", "high", "super" }; if (type != FFS_DESCRIPTOR)