summaryrefslogtreecommitdiff
path: root/board/scb9328
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2009-06-15 11:16:04 +0200
committerWolfgang Denk <wd@denx.de>2009-06-15 11:16:04 +0200
commit57fe30194d3c15c37d9ff06dbd2a4c1ffccda018 (patch)
tree84ec6bf344abc54d7cabed0cf13c5655dfb0bd86 /board/scb9328
parentc11ff779f4e0e0c7edc322e84dd229ad28709595 (diff)
parentc9005a72fee4231e30fe93c1741cea2342c54504 (diff)
downloadu-boot-imx-57fe30194d3c15c37d9ff06dbd2a4c1ffccda018.zip
u-boot-imx-57fe30194d3c15c37d9ff06dbd2a4c1ffccda018.tar.gz
u-boot-imx-57fe30194d3c15c37d9ff06dbd2a4c1ffccda018.tar.bz2
Merge branch 'master' of /home/wd/git/u-boot/custodians
Diffstat (limited to 'board/scb9328')
-rw-r--r--board/scb9328/scb9328.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/board/scb9328/scb9328.c b/board/scb9328/scb9328.c
index 3f6831b..428e8c9 100644
--- a/board/scb9328/scb9328.c
+++ b/board/scb9328/scb9328.c
@@ -19,6 +19,7 @@
*/
#include <common.h>
+#include <netdev.h>
DECLARE_GLOBAL_DATA_PTR;
@@ -70,3 +71,10 @@ void show_boot_progress (int status)
{
return;
}
+
+#ifdef CONFIG_DRIVER_DM9000
+int board_eth_init(bd_t *bis)
+{
+ return dm9000_initialize(bis);
+}
+#endif