diff options
author | Magnus Damm <damm@opensource.se> | 2013-10-01 06:33:15 -0400 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-10-07 21:02:21 -0400 |
commit | 3ae970a688f8f8a74d1b489b8646733a830c904b (patch) | |
tree | 70292a7bbfad1fdb15866b8de623577d7a43a1e3 | |
parent | 9e8b48b61aeb2eb9a02e81021bfb8d89ea4645a4 (diff) |
ARM: shmobile: Use KZM9D without reference for multiplatform
Change the multiplatform kconfig bits for KZM9D from
CONFIG_MACH_KZM9D_REFERENCE into CONFIG_MACH_KZM9D
to match the non-multiplatform case.
Signed-off-by: Magnus Damm <damm@opensource.se>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | arch/arm/mach-shmobile/Kconfig | 10 | ||||
-rw-r--r-- | arch/arm/mach-shmobile/Makefile | 4 |
2 files changed, 6 insertions, 8 deletions
diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig index 6a684ff62124..c9c4f15483bd 100644 --- a/arch/arm/mach-shmobile/Kconfig +++ b/arch/arm/mach-shmobile/Kconfig | |||
@@ -22,16 +22,10 @@ config ARCH_EMEV2 | |||
22 | 22 | ||
23 | comment "SH-Mobile Board Type" | 23 | comment "SH-Mobile Board Type" |
24 | 24 | ||
25 | config MACH_KZM9D_REFERENCE | 25 | config MACH_KZM9D |
26 | bool "KZM9D board - Reference Device Tree Implementation" | 26 | bool "KZM9D board" |
27 | depends on ARCH_EMEV2 | 27 | depends on ARCH_EMEV2 |
28 | select REGULATOR_FIXED_VOLTAGE if REGULATOR | 28 | select REGULATOR_FIXED_VOLTAGE if REGULATOR |
29 | ---help--- | ||
30 | Use reference implementation of KZM9D board support | ||
31 | which makes a greater use of device tree at the expense | ||
32 | of not supporting a number of devices. | ||
33 | |||
34 | This is intended to aid developers | ||
35 | 29 | ||
36 | comment "SH-Mobile System Configuration" | 30 | comment "SH-Mobile System Configuration" |
37 | endif | 31 | endif |
diff --git a/arch/arm/mach-shmobile/Makefile b/arch/arm/mach-shmobile/Makefile index b3840ba1a445..b11466d4d944 100644 --- a/arch/arm/mach-shmobile/Makefile +++ b/arch/arm/mach-shmobile/Makefile | |||
@@ -55,6 +55,9 @@ obj-$(CONFIG_ARCH_R8A7740) += pm-r8a7740.o pm-rmobile.o | |||
55 | obj-$(CONFIG_ARCH_R8A7779) += pm-r8a7779.o | 55 | obj-$(CONFIG_ARCH_R8A7779) += pm-r8a7779.o |
56 | 56 | ||
57 | # Board objects | 57 | # Board objects |
58 | ifdef CONFIG_ARCH_SHMOBILE_MULTI | ||
59 | obj-$(CONFIG_MACH_KZM9D) += board-kzm9d-reference.o | ||
60 | else | ||
58 | obj-$(CONFIG_MACH_APE6EVM) += board-ape6evm.o | 61 | obj-$(CONFIG_MACH_APE6EVM) += board-ape6evm.o |
59 | obj-$(CONFIG_MACH_APE6EVM_REFERENCE) += board-ape6evm-reference.o | 62 | obj-$(CONFIG_MACH_APE6EVM_REFERENCE) += board-ape6evm-reference.o |
60 | obj-$(CONFIG_MACH_MACKEREL) += board-mackerel.o | 63 | obj-$(CONFIG_MACH_MACKEREL) += board-mackerel.o |
@@ -72,6 +75,7 @@ obj-$(CONFIG_MACH_KZM9D) += board-kzm9d.o | |||
72 | obj-$(CONFIG_MACH_KZM9D_REFERENCE) += board-kzm9d-reference.o | 75 | obj-$(CONFIG_MACH_KZM9D_REFERENCE) += board-kzm9d-reference.o |
73 | obj-$(CONFIG_MACH_KZM9G) += board-kzm9g.o | 76 | obj-$(CONFIG_MACH_KZM9G) += board-kzm9g.o |
74 | obj-$(CONFIG_MACH_KZM9G_REFERENCE) += board-kzm9g-reference.o | 77 | obj-$(CONFIG_MACH_KZM9G_REFERENCE) += board-kzm9g-reference.o |
78 | endif | ||
75 | 79 | ||
76 | # Framework support | 80 | # Framework support |
77 | obj-$(CONFIG_SMP) += $(smp-y) | 81 | obj-$(CONFIG_SMP) += $(smp-y) |