diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2009-08-06 18:28:34 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-08-28 17:12:37 -0500 |
commit | 53efa1f1acacacb76fa9a21b09b3294783a11c03 (patch) | |
tree | 60bdaf349094fd1e3bbce4d925a176eb24499ed3 /cpu/mpc85xx/config.mk | |
parent | 337f9fde2e9317c1d9e85a4a8955a2f14730a00f (diff) | |
download | u-boot-imx-53efa1f1acacacb76fa9a21b09b3294783a11c03.zip u-boot-imx-53efa1f1acacacb76fa9a21b09b3294783a11c03.tar.gz u-boot-imx-53efa1f1acacacb76fa9a21b09b3294783a11c03.tar.bz2 |
85xx: Remove redudant PLATFORM_CPPFLAGS
For historic reasons we had defined some additional PLATFORM_CPPFLAGS
like:
PLATFORM_CPPFLAGS += -DCONFIG_E500=1
PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1
PLATFORM_CPPFLAGS += -DCONFIG_MPC8548=1
However these are all captured in the config.h and thus redudant.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/config.mk')
-rw-r--r-- | cpu/mpc85xx/config.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpu/mpc85xx/config.mk b/cpu/mpc85xx/config.mk index 9e574a2..2da4d53 100644 --- a/cpu/mpc85xx/config.mk +++ b/cpu/mpc85xx/config.mk @@ -23,6 +23,5 @@ PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx -DCONFIG_E500 -ffixed-r2 \ - -Wa,-me500 -msoft-float -mno-string +PLATFORM_CPPFLAGS += -ffixed-r2 -Wa,-me500 -msoft-float -mno-string PLATFORM_CPPFLAGS +=$(call cc-option,-mno-spe) |