usb: gadget: fsl_qe_udc: signedness bug in qe_get_frame()
commit f4693b08cc901912a87369c46537b94ed4084ea0 upstream.
We can't assign -EINVAL to a u16.
Fixes: 3948f0e0c9
('usb: add Freescale QE/CPM USB peripheral controller driver')
Acked-by: Peter Chen <peter.chen@nxp.com>
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f0006eda8e
commit
b5f881a43e
1 changed files with 2 additions and 5 deletions
|
@ -1878,11 +1878,8 @@ static int qe_get_frame(struct usb_gadget *gadget)
|
||||||
|
|
||||||
tmp = in_be16(&udc->usb_param->frame_n);
|
tmp = in_be16(&udc->usb_param->frame_n);
|
||||||
if (tmp & 0x8000)
|
if (tmp & 0x8000)
|
||||||
tmp = tmp & 0x07ff;
|
return tmp & 0x07ff;
|
||||||
else
|
return -EINVAL;
|
||||||
tmp = -EINVAL;
|
|
||||||
|
|
||||||
return (int)tmp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fsl_qe_start(struct usb_gadget *gadget,
|
static int fsl_qe_start(struct usb_gadget *gadget,
|
||||||
|
|
Loading…
Add table
Reference in a new issue