diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-03-14 14:58:34 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-03-22 12:15:10 -0400 |
commit | 680207a1c59bd678c6e56473c70326b4c50a7abf (patch) | |
tree | 5ed301b049957711c51e414bc7052330a6028535 /arch | |
parent | 89c2b5c02049aea746b1edee0b4e1d8519dec2f4 (diff) | |
download | u-boot-680207a1c59bd678c6e56473c70326b4c50a7abf.tar.gz u-boot-680207a1c59bd678c6e56473c70326b4c50a7abf.tar.xz u-boot-680207a1c59bd678c6e56473c70326b4c50a7abf.zip |
powerpc: fix arch/powerpc/dts/Makefile
Since commit 27cb7300ffda ("Ensure device tree DTS is compiled"),
build succeeds irrespective of the correctness of Makefile.
I am going to revert that commit, so wrong code must be fixed.
CONFIG_MCR3000 is not defined anywhere. CONFIG_TARGET_MCR3000 is the
correct one.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/dts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/dts/Makefile b/arch/powerpc/dts/Makefile index 172bed4c20..f080a96891 100644 --- a/arch/powerpc/dts/Makefile +++ b/arch/powerpc/dts/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0+ dtb-$(CONFIG_TARGET_T2080QDS) += t2080qds.dtb -dtb-$(CONFIG_MCR3000) += mcr3000.dtb +dtb-$(CONFIG_TARGET_MCR3000) += mcr3000.dtb targets += $(dtb-y) |