Skip to content
Snippets Groups Projects
Commit cfd39cdf authored by Vivek Mahajan's avatar Vivek Mahajan Committed by Wolfgang Denk
Browse files

mpc8xxx: USB: Removed reenablement of its interface


To prepare for the 85xx USB support, which requires interface enablement
only once in (specified) order, no different than instructions for
enabling the interface under 83xx.  It is unknown why the original author
enabled the interface twice (checked for references in errata, etc).

Signed-off-by: default avatarVivek Mahajan <vivek.mahajan@freescale.com>
Signed-off-by: default avatarRemy Bohmer <linux@bohmer.net>
parent 2c7920af
No related branches found
No related tags found
No related merge requests found
...@@ -81,10 +81,6 @@ int ehci_hcd_init(void) ...@@ -81,10 +81,6 @@ int ehci_hcd_init(void)
out_be32((void *)(addr + FSL_SOC_USB_AGECNTTHRSH), 0x00000040); out_be32((void *)(addr + FSL_SOC_USB_AGECNTTHRSH), 0x00000040);
out_be32((void *)(addr + FSL_SOC_USB_SICTRL), 0x00000001); out_be32((void *)(addr + FSL_SOC_USB_SICTRL), 0x00000001);
/* Enable interface. */
temp = in_be32((void *)(addr + FSL_SOC_USB_CTRL));
out_be32((void *)(addr + FSL_SOC_USB_CTRL), temp | USB_EN);
temp = in_le32((void *)(addr + FSL_SOC_USB_USBMODE)); temp = in_le32((void *)(addr + FSL_SOC_USB_USBMODE));
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment