diff options
author | Dan Murphy <dmurphy@ti.com> | 2013-10-11 12:28:15 -0500 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2013-10-20 23:42:41 +0200 |
commit | b2168211893013925b2d1975276cc9442bae83cb (patch) | |
tree | 63dd5ccfbcbb57ed7edbacc125e8f6e7ec551cd8 /board/ti | |
parent | 41b667b834aaf550faabbf1d222a456cb4fc97ec (diff) | |
download | u-boot-imx-b2168211893013925b2d1975276cc9442bae83cb.zip u-boot-imx-b2168211893013925b2d1975276cc9442bae83cb.tar.gz u-boot-imx-b2168211893013925b2d1975276cc9442bae83cb.tar.bz2 |
usb: omap5: Update the board_usb_init api
Recent patches declares board_usb_init function prototype for a new
usb architecture.
Turning on the OMAP_XHCI defines cause a redefinition compiler failure.
So update the board_usb_init to the latest prototype.
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Diffstat (limited to 'board/ti')
-rw-r--r-- | board/ti/omap5_uevm/evm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/omap5_uevm/evm.c b/board/ti/omap5_uevm/evm.c index 228df29..6a01200 100644 --- a/board/ti/omap5_uevm/evm.c +++ b/board/ti/omap5_uevm/evm.c @@ -219,7 +219,7 @@ void usb_hub_reset_devices(int port) * * @return 0 */ -int board_usb_init(void) +int board_usb_init(int index, enum board_usb_init_type init) { int ret; #ifdef CONFIG_PALMAS_USB_SS_PWR |