diff options
author | Nikita Kiryanov <nikita@compulab.co.il> | 2012-12-03 16:17:58 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2012-12-20 17:04:21 +0100 |
commit | 41984e71231c7af4a5617f4f94f372714c64d987 (patch) | |
tree | b4a1e317fb8eab5886c781b5e38eca26bb2acaaa /board/cm_t35/cm_t35.c | |
parent | 854a7836dc10d9ff818ba9eb4265538acd037cd9 (diff) | |
download | u-boot-imx-41984e71231c7af4a5617f4f94f372714c64d987.zip u-boot-imx-41984e71231c7af4a5617f4f94f372714c64d987.tar.gz u-boot-imx-41984e71231c7af4a5617f4f94f372714c64d987.tar.bz2 |
cm_t35: use new low level interface for usb ehci
Update usb host support to use new version of omap_ehci_hcd_init.
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
Diffstat (limited to 'board/cm_t35/cm_t35.c')
-rw-r--r-- | board/cm_t35/cm_t35.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/cm_t35/cm_t35.c b/board/cm_t35/cm_t35.c index 4db448a..edbb941 100644 --- a/board/cm_t35/cm_t35.c +++ b/board/cm_t35/cm_t35.c @@ -503,7 +503,7 @@ struct omap_usbhs_board_data usbhs_bdata = { }; #define SB_T35_USB_HUB_RESET_GPIO 167 -int ehci_hcd_init(void) +int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor) { u8 val; int offset; @@ -529,7 +529,7 @@ int ehci_hcd_init(void) twl4030_i2c_write_u8(TWL4030_CHIP_GPIO, 0xC0, offset); udelay(1); - return omap_ehci_hcd_init(&usbhs_bdata); + return omap_ehci_hcd_init(&usbhs_bdata, hccr, hcor); } int ehci_hcd_stop(void) |