diff options
Diffstat (limited to 'board/bc3450')
-rw-r--r-- | board/bc3450/bc3450.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/bc3450/bc3450.c b/board/bc3450/bc3450.c index a728dc64d..e27c23416 100644 --- a/board/bc3450/bc3450.c +++ b/board/bc3450/bc3450.c @@ -33,6 +33,7 @@ #include <common.h> #include <mpc5xxx.h> #include <pci.h> +#include <netdev.h> #ifdef CONFIG_VIDEO_SM501 #include <sm501.h> @@ -669,3 +670,8 @@ int board_get_height (void) } #endif /* CONFIG_VIDEO_SM501 */ + +int board_eth_init(bd_t *bis) +{ + return pci_eth_init(bis); +} |