Commit 0e042be3 authored by Alexander Aring's avatar Alexander Aring Committed by Greg Kroah-Hartman

usb: gadget: fsl_udc_core: fix compile error.

Fix compile error in file drivers/usb/gadget/fsl_udc_core.c.

drivers/usb/gadget/fsl_udc_core.c: In function 'portscx_device_speed':
drivers/usb/gadget/fsl_udc_core.c:1720: error: 'speed' undeclared (first
use in this function)

Introduced in commit e538dfda
(usb: Provide usb_speed_string() function)
Signed-off-by: default avatarAlexander Aring <a.aring@phytec.de>
Acked-by: default avatarMichal Nazarewicz <mina86@mina86.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 05bb7013
...@@ -1717,7 +1717,7 @@ static void dtd_complete_irq(struct fsl_udc *udc) ...@@ -1717,7 +1717,7 @@ static void dtd_complete_irq(struct fsl_udc *udc)
static inline enum usb_device_speed portscx_device_speed(u32 reg) static inline enum usb_device_speed portscx_device_speed(u32 reg)
{ {
switch (speed & PORTSCX_PORT_SPEED_MASK) { switch (reg & PORTSCX_PORT_SPEED_MASK) {
case PORTSCX_PORT_SPEED_HIGH: case PORTSCX_PORT_SPEED_HIGH:
return USB_SPEED_HIGH; return USB_SPEED_HIGH;
case PORTSCX_PORT_SPEED_FULL: case PORTSCX_PORT_SPEED_FULL:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment