usb: gadget: fsl: Fix unsigned expression compared with zero in fsl_udc_probe
authorYe Bin <yebin10@huawei.com>
Mon, 24 Aug 2020 08:42:34 +0000 (16:42 +0800)
committerFelipe Balbi <balbi@kernel.org>
Fri, 2 Oct 2020 06:57:41 +0000 (09:57 +0300)
commit87a2dfb136430c914f286e4b9870d538e559df29
treef829dd9df8279bcd285cbaac816b9cb427b207c0
parent4eea21dc67b0c6ba15ae41b1defa113a680a858e
usb: gadget: fsl: Fix unsigned expression compared with zero in fsl_udc_probe

udc_controller->irq is "unsigned int" always >= 0, but platform_get_irq may
return little than zero. So "dc_controller->irq < 0" condition is never
accessible.

Acked-by: Li Yang <leoyang.li@nxp.com>
Signed-off-by: Ye Bin <yebin10@huawei.com>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
drivers/usb/gadget/udc/fsl_udc_core.c