diff options
Diffstat (limited to 'cpu/mcf547x_8x')
| -rw-r--r-- | cpu/mcf547x_8x/cpu.c | 9 | 
1 files changed, 9 insertions, 0 deletions
| 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 |