summaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-mx6.c
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2014-09-15 17:23:14 +0800
committerStefano Babic <sbabic@denx.de>2014-09-29 10:33:27 +0200
commit5546ad0734bb5eed2b3cd6333dbcec51ae45185a (patch)
tree0668447f9f47dcbc6f8bbbdd7f936fc17b6b4f4c /drivers/usb/host/ehci-mx6.c
parent9293d7fd502ce29302fadb8b4ccb9231ec0bcc66 (diff)
downloadtalos-obmc-uboot-5546ad0734bb5eed2b3cd6333dbcec51ae45185a.tar.gz
talos-obmc-uboot-5546ad0734bb5eed2b3cd6333dbcec51ae45185a.zip
usb: ehci-mx6: Rename the USB register base address
The mx6sl/mx6sx has 2 OTG and 1 host. So they have name "USBO2H_USB_BASE_ADDR" in imx-regs.h. The driver hard codes the USB base address name to "USBOH3", which causes the driver failed to build for mx6sl/mx6sx. This patch uniform the address name to "USB_BASE_ADDR" for all mx6 series. Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'drivers/usb/host/ehci-mx6.c')
-rw-r--r--drivers/usb/host/ehci-mx6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ehci-mx6.c b/drivers/usb/host/ehci-mx6.c
index c0a557b2ad..9ec5a0a539 100644
--- a/drivers/usb/host/ehci-mx6.c
+++ b/drivers/usb/host/ehci-mx6.c
@@ -174,7 +174,7 @@ struct usbnc_regs {
static void usb_oc_config(int index)
{
- struct usbnc_regs *usbnc = (struct usbnc_regs *)(USBOH3_USB_BASE_ADDR +
+ struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
USB_OTHERREGS_OFFSET);
void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl[index]);
u32 val;
@@ -207,7 +207,7 @@ int ehci_hcd_init(int index, enum usb_init_type init,
struct ehci_hccr **hccr, struct ehci_hcor **hcor)
{
enum usb_init_type type;
- struct usb_ehci *ehci = (struct usb_ehci *)(USBOH3_USB_BASE_ADDR +
+ struct usb_ehci *ehci = (struct usb_ehci *)(USB_BASE_ADDR +
(0x200 * index));
if (index > 3)
OpenPOWER on IntegriCloud