diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2009-08-07 03:28:34 +0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-08-29 02:12:37 +0400 |
commit | 53efa1f1acacacb76fa9a21b09b3294783a11c03 (patch) | |
tree | 60bdaf349094fd1e3bbce4d925a176eb24499ed3 /board/sbc8560 | |
parent | 337f9fde2e9317c1d9e85a4a8955a2f14730a00f (diff) | |
download | u-boot-53efa1f1acacacb76fa9a21b09b3294783a11c03.tar.xz |
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 'board/sbc8560')
-rw-r--r-- | board/sbc8560/config.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/board/sbc8560/config.mk b/board/sbc8560/config.mk index 6d9ae45126..995dadaff4 100644 --- a/board/sbc8560/config.mk +++ b/board/sbc8560/config.mk @@ -28,6 +28,3 @@ # assume U-Boot is less than 256K # TEXT_BASE = 0xfffc0000 - -PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1 -PLATFORM_CPPFLAGS += -DCONFIG_E500=1 |