* Ramneek Mehresh | 2011-06-21 11:36:02 [+0530]: >diff --git a/drivers/usb/gadget/fsl_udc_core.c b/drivers/usb/gadget/fsl_udc_core.c >index 2cd9a60..875eb75 100644 >--- a/drivers/usb/gadget/fsl_udc_core.c >+++ b/drivers/usb/gadget/fsl_udc_core.c >@@ -250,6 +250,18 @@ static int dr_controller_setup(struct fsl_udc *udc) > portctrl |= PORTSCX_PTW_16BIT; > /* fall through */ > case FSL_USB2_PHY_UTMI: >+#if defined(CONFIG_FSL_SOC_BOOKE) Why is this BOOK-E specific? Doesn't this apply to others as well since it is the same core? >+ setbits32(&usb_sys_regs->control, USB_CTRL_UTMI_PHY_EN | >+ USB_CTRL_USB_EN); >+ /* UTMI PLY clk becomes stable after 10ms */ >+ udelay(10*1000); mdelay? >+ /* check for PHY clk */ >+ if (!(fsl_readl(&usb_sys_regs->control) & >+ USB_CTRL_PHY_CLK_VLD)) { >+ ERR("usb phy clk not found\n"); >+ return -EFAULT; >+ } >+#endif > portctrl |= PORTSCX_PTS_UTMI; > break; > case FSL_USB2_PHY_SERIAL: Sebastian -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html