summaryrefslogtreecommitdiff
path: root/arch/arm
diff options
context:
space:
mode:
authorAndrew F. Davis <afd@ti.com>2016-11-18 17:56:15 (GMT)
committerTom Rini <trini@konsulko.com>2016-11-28 20:10:34 (GMT)
commitac34286647a3404a63a7d48644d0d577698c42e2 (patch)
tree067cc1ac67dc034b801e33f911d386f74a713f2b /arch/arm
parent384b1d507f1057d97e7cd086f9ea649549300a44 (diff)
downloadu-boot-ac34286647a3404a63a7d48644d0d577698c42e2.tar.xz
keystone2: Move target selection to Kconfig
The config option TARGET_K2x_EVM is set by the k2x defconfigs to pick a board target, but the header configs also set K2x_EVM. This config is redundant, remove it and use TARGET_K2x_EVM everywhere in its place. Signed-off-by: Andrew F. Davis <afd@ti.com> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-keystone/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-keystone/Makefile b/arch/arm/mach-keystone/Makefile
index b2ffe5b..8253a3b 100644
--- a/arch/arm/mach-keystone/Makefile
+++ b/arch/arm/mach-keystone/Makefile
@@ -18,5 +18,5 @@ endif
obj-y += msmc.o
obj-y += ddr3.o
obj-y += keystone.o
-obj-$(CONFIG_K2E_EVM) += ddr3_spd.o
-obj-$(CONFIG_K2HK_EVM) += ddr3_spd.o
+obj-$(CONFIG_TARGET_K2E_EVM) += ddr3_spd.o
+obj-$(CONFIG_TARGET_K2HK_EVM) += ddr3_spd.o