diff options
author | Wolfgang Denk <wd@denx.de> | 2010-06-13 18:38:23 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-06-23 23:24:11 +0200 |
commit | ee80fa7b6e96a43d4270700cddc884e00cdd99fd (patch) | |
tree | 07cff0ade8bd9c595b4ed462a33a450083e81fc2 /include/configs/ELPPC.h | |
parent | f35f3968c21bc8d01958ad1f92fe30e6ccc9c318 (diff) |
Get rid of bogus CONFIG_SYS_BUS_HZ and CONFIG_SYS_CONFIG_BUS_CLK definitions
CONFIG_SYS_BUS_HZ has not really been used anywhere except to be
redined as CONFIG_SYS_BUS_CLK; in addition, the mpc7448hpc2 had the
bogus CONFIG_SYS_CONFIG_BUS_CLK setting which duplicated the
funtionality. Change all this to use CONFIG_SYS_BUS_CLK consistently.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Frank Gottschling <fgottschling@eltec.de>
Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
Cc: Eran Man <eran@nbase.co.il>
Cc: Stefan Roese <sr@denx.de>
Cc: Nye Liu <nyet@zumanetworks.com>
Cc: Roy Zang <tie-fei.zang@freescale.com>
Diffstat (limited to 'include/configs/ELPPC.h')
-rw-r--r-- | include/configs/ELPPC.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/configs/ELPPC.h b/include/configs/ELPPC.h index d2aa8b92e47..84d27b67a92 100644 --- a/include/configs/ELPPC.h +++ b/include/configs/ELPPC.h @@ -314,9 +314,8 @@ /* * Speed settings are board specific */ -#define CONFIG_SYS_BUS_HZ 100000000 -#define CONFIG_SYS_CPU_CLK 400000000 -#define CONFIG_SYS_BUS_CLK CONFIG_SYS_BUS_HZ +#define CONFIG_SYS_BUS_CLK 100000000 +#define CONFIG_SYS_CPU_CLK 400000000 /* * For booting Linux, the board info and command line data |