diff options
Diffstat (limited to 'board/sbc8240/sbc8240.c')
-rw-r--r-- | board/sbc8240/sbc8240.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/sbc8240/sbc8240.c b/board/sbc8240/sbc8240.c index 175720d9065..075e3777ff4 100644 --- a/board/sbc8240/sbc8240.c +++ b/board/sbc8240/sbc8240.c @@ -28,6 +28,7 @@ #include <mpc824x.h> #include <asm/processor.h> #include <pci.h> +#include <netdev.h> DECLARE_GLOBAL_DATA_PTR; @@ -103,3 +104,8 @@ int misc_init_r (void) return (0); } #endif /* CONFIG_MISC_INIT_R */ + +int board_eth_init(bd_t *bis) +{ + return pci_eth_init(bis); +} |