diff options
author | Wolfgang Denk <wd@denx.de> | 2008-09-03 22:43:57 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-09-03 22:43:57 +0200 |
commit | 16116ddd0d0158f4e91c91dc979b845b6e98a99d (patch) | |
tree | e2062a888c76462b6335da29092c5fe4134c0859 /cpu/mpc86xx/cpu.c | |
parent | 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51 (diff) | |
parent | be1b0d2777e179191a57b138b660547a17e55aad (diff) | |
download | u-boot-imx-16116ddd0d0158f4e91c91dc979b845b6e98a99d.zip u-boot-imx-16116ddd0d0158f4e91c91dc979b845b6e98a99d.tar.gz u-boot-imx-16116ddd0d0158f4e91c91dc979b845b6e98a99d.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-net
Diffstat (limited to 'cpu/mpc86xx/cpu.c')
-rw-r--r-- | cpu/mpc86xx/cpu.c | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/cpu/mpc86xx/cpu.c b/cpu/mpc86xx/cpu.c index ecea5b0..3a75af7 100644 --- a/cpu/mpc86xx/cpu.c +++ b/cpu/mpc86xx/cpu.c @@ -28,6 +28,7 @@ #include <asm/cache.h> #include <asm/mmu.h> #include <mpc86xx.h> +#include <tsec.h> #include <asm/fsl_law.h> @@ -305,28 +306,15 @@ void mpc86xx_reginfo(void) } -#ifdef CONFIG_TSEC_ENET -/* Default initializations for TSEC controllers. To override, - * create a board-specific function called: - * int board_eth_init(bd_t *bis) +/* + * Initializes on-chip ethernet controllers. + * to override, implement board_eth_init() */ - -extern int tsec_initialize(bd_t * bis, int index, char *devname); - int cpu_eth_init(bd_t *bis) { -#if defined(CONFIG_TSEC1) - tsec_initialize(bis, 0, CONFIG_TSEC1_NAME); -#endif -#if defined(CONFIG_TSEC2) - tsec_initialize(bis, 1, CONFIG_TSEC2_NAME); -#endif -#if defined(CONFIG_TSEC3) - tsec_initialize(bis, 2, CONFIG_TSEC3_NAME); -#endif -#if defined(CONFIG_TSEC4) - tsec_initialize(bis, 3, CONFIG_TSEC4_NAME); +#if defined(CONFIG_TSEC_ENET) + tsec_standard_init(bis); #endif + return 0; } -#endif /* CONFIG_TSEC_ENET */ |