From b31da88b9c160d80d42a59cbbb31e24f27184d5c Mon Sep 17 00:00:00 2001 From: Ben Warren Date: Tue, 26 Aug 2008 22:12:36 -0700 Subject: Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory Added a cpu_eth_init() function to cpu/mcf547x_8x directory and removed code from net/eth.c Signed-off-by: Ben Warren --- cpu/mcf547x_8x/cpu.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'cpu/mcf547x_8x') diff --git a/cpu/mcf547x_8x/cpu.c b/cpu/mcf547x_8x/cpu.c index 528bca6bf..e29b45c4c 100644 --- a/cpu/mcf547x_8x/cpu.c +++ b/cpu/mcf547x_8x/cpu.c @@ -141,3 +141,12 @@ int watchdog_init(void) return (0); } #endif /* CONFIG_HW_WATCHDOG */ + +#if defined(CONFIG_FSLDMAFEC) +extern int mcdmafec_initialize(bd_t *bis); + +int cpu_eth_init(bd_t *bis) +{ + return mcdmafec_initialize(bis); +} +#endif -- cgit v1.2.3