diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-01-15 10:14:07 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-01-24 16:59:08 -0500 |
commit | d40ddae4b3c24d4c9f06a91e6f8d4e6b9dac4c9e (patch) | |
tree | eee87403c88ae66a8c226eb0fb1f769f4bbd0e71 /arch/powerpc/cpu | |
parent | 52de0e49dfdc6f1dd55f31e312a3f050be75b69e (diff) | |
download | u-boot-imx-d40ddae4b3c24d4c9f06a91e6f8d4e6b9dac4c9e.zip u-boot-imx-d40ddae4b3c24d4c9f06a91e6f8d4e6b9dac4c9e.tar.gz u-boot-imx-d40ddae4b3c24d4c9f06a91e6f8d4e6b9dac4c9e.tar.bz2 |
powerpc: mpc85xx: move CONFIG_MPC85xx definition to CPU config.mk
Define CONFIG_MPC85xx in arch/powerpc/cpu/mpc85xx/config.mk
because all target boards with mpc85xx cpu define it.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/powerpc/cpu')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/config.mk b/arch/powerpc/cpu/mpc85xx/config.mk index 72c964c..1470f95 100644 --- a/arch/powerpc/cpu/mpc85xx/config.mk +++ b/arch/powerpc/cpu/mpc85xx/config.mk @@ -5,7 +5,7 @@ # SPDX-License-Identifier: GPL-2.0+ # -PLATFORM_CPPFLAGS += -Wa,-me500 -msoft-float -mno-string +PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx -Wa,-me500 -msoft-float -mno-string # -mspe=yes is needed to have -mno-spe accepted by a buggy GCC; # see "[PATCH,rs6000] make -mno-spe work as expected" on |