diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2007-05-16 16:52:19 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-05-17 00:07:21 +0200 |
commit | 255a3577c848706441daee0174543efe205a77f8 (patch) | |
tree | e4060fa18c74a71b86aaf80f86f62abfea02d114 /cpu/mpc85xx/cpu.c | |
parent | 3a71b5ca775fc9cf506c12d91925019591446c7c (diff) | |
download | u-boot-imx-255a3577c848706441daee0174543efe205a77f8.zip u-boot-imx-255a3577c848706441daee0174543efe205a77f8.tar.gz u-boot-imx-255a3577c848706441daee0174543efe205a77f8.tar.bz2 |
Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
For all practical u-boot purposes, TSECs don't differ throughout the
mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'cpu/mpc85xx/cpu.c')
-rw-r--r-- | cpu/mpc85xx/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c index 7735a52..1d791c9 100644 --- a/cpu/mpc85xx/cpu.c +++ b/cpu/mpc85xx/cpu.c @@ -280,7 +280,7 @@ ft_cpu_setup(void *blob, bd_t *bd) if (p != NULL) *p = cpu_to_be32(clock); -#if defined(CONFIG_MPC85XX_TSEC1) +#if defined(CONFIG_TSEC1) p = ft_get_prop(blob, "/" OF_SOC "/ethernet@24000/mac-address", &len); if (p) memcpy(p, bd->bi_enetaddr, 6); |