Commit fcbd9639 authored by Li Yang's avatar Li Yang Committed by Greg Kroah-Hartman

USB: fsl_usb2_udc: Fix UMTI_WIDE support and a compile warning

Change PORT_WIDTH bit for UMTI_WIDE mode and fix a compile warning
introduced in last revision.
Signed-off-by: default avatarLi Yang <leoli@freescale.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 8d062b9a
...@@ -228,13 +228,15 @@ static int dr_controller_setup(struct fsl_udc *udc) ...@@ -228,13 +228,15 @@ static int dr_controller_setup(struct fsl_udc *udc)
/* Config PHY interface */ /* Config PHY interface */
portctrl = fsl_readl(&dr_regs->portsc1); portctrl = fsl_readl(&dr_regs->portsc1);
portctrl &= ~PORTSCX_PHY_TYPE_SEL; portctrl &= ~(PORTSCX_PHY_TYPE_SEL & PORTSCX_PORT_WIDTH);
switch (udc->phy_mode) { switch (udc->phy_mode) {
case FSL_USB2_PHY_ULPI: case FSL_USB2_PHY_ULPI:
portctrl |= PORTSCX_PTS_ULPI; portctrl |= PORTSCX_PTS_ULPI;
break; break;
case FSL_USB2_PHY_UTMI:
case FSL_USB2_PHY_UTMI_WIDE: case FSL_USB2_PHY_UTMI_WIDE:
portctrl |= PORTSCX_PTW_16BIT;
/* fall through */
case FSL_USB2_PHY_UTMI:
portctrl |= PORTSCX_PTS_UTMI; portctrl |= PORTSCX_PTS_UTMI;
break; break;
case FSL_USB2_PHY_SERIAL: case FSL_USB2_PHY_SERIAL:
...@@ -625,7 +627,7 @@ static void fsl_free_buffer(struct usb_ep *_ep, void *buf, ...@@ -625,7 +627,7 @@ static void fsl_free_buffer(struct usb_ep *_ep, void *buf,
struct fsl_ep *ep; struct fsl_ep *ep;
if (!_ep) if (!_ep)
return NULL; return;
ep = container_of(_ep, struct fsl_ep, ep); ep = container_of(_ep, struct fsl_ep, ep);
......
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