diff options
author | Vivek Gautam <gautam.vivek@samsung.com> | 2013-03-06 14:18:33 +0530 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2013-03-18 18:58:54 +0100 |
commit | c74b0116b6cd839babfc57b0eb83e4e989227f17 (patch) | |
tree | de7b13a9e9392706a4ca07620ce9230ee125ea0d /drivers/usb/host | |
parent | 24a4775f91b188e7a1e19dff4b0063bd8fc900c8 (diff) | |
download | u-boot-imx-c74b0116b6cd839babfc57b0eb83e4e989227f17.zip u-boot-imx-c74b0116b6cd839babfc57b0eb83e4e989227f17.tar.gz u-boot-imx-c74b0116b6cd839babfc57b0eb83e4e989227f17.tar.bz2 |
usb: ehci: exynos: Enable non-dt path
Enabling the non-dt path for the driver so that
we don't get any build errors for non-dt configuration.
Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/ehci-exynos.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-exynos.c b/drivers/usb/host/ehci-exynos.c index c4c90be..0c797aa 100644 --- a/drivers/usb/host/ehci-exynos.c +++ b/drivers/usb/host/ehci-exynos.c @@ -47,6 +47,7 @@ struct exynos_ehci { static struct exynos_ehci exynos; +#ifdef CONFIG_OF_CONTROL static int exynos_usb_parse_dt(const void *blob, struct exynos_ehci *exynos) { fdt_addr_t addr; @@ -90,6 +91,7 @@ static int exynos_usb_parse_dt(const void *blob, struct exynos_ehci *exynos) return 0; } +#endif /* Setup the EHCI host controller. */ static void setup_usb_phy(struct exynos_usb_phy *usb) @@ -151,10 +153,15 @@ int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor) { struct exynos_ehci *ctx = &exynos; +#ifdef CONFIG_OF_CONTROL if (exynos_usb_parse_dt(gd->fdt_blob, ctx)) { debug("Unable to parse device tree for ehci-exynos\n"); return -ENODEV; } +#else + ctx->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy(); + ctx->hcd = (struct ehci_hccr *)samsung_get_base_usb_ehci(); +#endif setup_usb_phy(ctx->usb); |