summaryrefslogtreecommitdiffstats
path: root/board/freescale/mx51evk
diff options
context:
space:
mode:
authorAnatolij Gustschin <agust@denx.de>2011-12-12 01:25:46 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2011-12-19 17:52:43 +0100
commit60bae5ef826b4685ccf433dae4ac2d3fea5b4839 (patch)
tree130f15e0f87bb433d13b5a1f6d67b7b26a4af7ee /board/freescale/mx51evk
parent901de79a3792c81aefcbf207a34049e63f21362b (diff)
downloadblackbird-obmc-uboot-60bae5ef826b4685ccf433dae4ac2d3fea5b4839.tar.gz
blackbird-obmc-uboot-60bae5ef826b4685ccf433dae4ac2d3fea5b4839.zip
Fix building for mx51evk board
Fix: mx51evk.c:206:6: error: conflicting types for 'board_ehci_hcd_init' /u-boot/include/usb/ehci-fsl.h:254:5: note: previous declaration of 'board_ehci_hcd_init' was here We also fix board_ehci_hcd_init() for mx53loco board. Building for mx53loco worked since <usb/ehci-fsl.h> is not included here. Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'board/freescale/mx51evk')
-rw-r--r--board/freescale/mx51evk/mx51evk.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/board/freescale/mx51evk/mx51evk.c b/board/freescale/mx51evk/mx51evk.c
index 13c59413ec..e43aaf726e 100644
--- a/board/freescale/mx51evk/mx51evk.c
+++ b/board/freescale/mx51evk/mx51evk.c
@@ -203,7 +203,7 @@ static void setup_usb_h1(void)
mxc_iomux_set_pad(MX51_PIN_EIM_D21, GPIO_PAD);
}
-void board_ehci_hcd_init(int port)
+int board_ehci_hcd_init(int port)
{
/* Set USBH1_STP to GPIO and toggle it */
mxc_request_iomux(MX51_PIN_USBH1_STP, IOMUX_CONFIG_GPIO);
@@ -228,6 +228,7 @@ void board_ehci_hcd_init(int port)
gpio_direction_output(MX51EVK_USBH1_HUB_RST, 0);
mdelay(2);
gpio_set_value(MX51EVK_USBH1_HUB_RST, 1);
+ return 0;
}
#endif
OpenPOWER on IntegriCloud