diff options
author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-21 00:26:19 +0200 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-21 00:26:19 +0200 |
commit | d193c1b6eb05041c94ad9aacd8c94189d1dbc5f8 (patch) | |
tree | c08012d3c427142364bca40e042659b3a819c60a /board/genesi/mx51_efikamx/efikamx-usb.c | |
parent | 651eb7322407173d5f1ac5a149e381a4044858f4 (diff) | |
parent | 1d9b033269263a69f7402f508c17b242fc7fea43 (diff) |
Merge remote-tracking branch 'u-boot-imx/master'
Diffstat (limited to 'board/genesi/mx51_efikamx/efikamx-usb.c')
-rw-r--r-- | board/genesi/mx51_efikamx/efikamx-usb.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/board/genesi/mx51_efikamx/efikamx-usb.c b/board/genesi/mx51_efikamx/efikamx-usb.c index e9273d027a..cf020c35cb 100644 --- a/board/genesi/mx51_efikamx/efikamx-usb.c +++ b/board/genesi/mx51_efikamx/efikamx-usb.c @@ -214,3 +214,15 @@ void board_ehci_hcd_postinit(struct usb_ehci *ehci, int port) if (port) mdelay(10); } + +/* + * Ethernet on the Smarttop is on the USB bus. Rather than give an error about + * "CPU Net Initialization Failed", just pass this test since no other settings + * are required. Smartbook doesn't have built-in Ethernet but we will let it + * pass anyway considering someone may have plugged in a USB stick and all + * they need to do is run "usb start". + */ +int board_eth_init(bd_t *bis) +{ + return 0; +} |