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 /board/xes | |
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 'board/xes')
-rw-r--r-- | board/xes/xpedite5200/config.mk | 3 | ||||
-rw-r--r-- | board/xes/xpedite5370/config.mk | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/board/xes/xpedite5200/config.mk b/board/xes/xpedite5200/config.mk index be5a5c3..fbfbc2b 100644 --- a/board/xes/xpedite5200/config.mk +++ b/board/xes/xpedite5200/config.mk @@ -28,7 +28,4 @@ ifndef TEXT_BASE TEXT_BASE = 0xfff80000 endif -PLATFORM_CPPFLAGS += -DCONFIG_E500=1 -PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1 -PLATFORM_CPPFLAGS += -DCONFIG_MPC8548=1 PLATFORM_CPPFLAGS += -mrelocatable diff --git a/board/xes/xpedite5370/config.mk b/board/xes/xpedite5370/config.mk index 39469b2..7b8d06b 100644 --- a/board/xes/xpedite5370/config.mk +++ b/board/xes/xpedite5370/config.mk @@ -29,7 +29,3 @@ TEXT_BASE = 0xfff80000 endif PLATFORM_RELFLAGS += -mrelocatable - -PLATFORM_CPPFLAGS += -DCONFIG_E500=1 -PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1 -PLATFORM_CPPFLAGS += -DCONFIG_MPC8572=1 |