diff options
| author | Magnus Damm <damm@opensource.se> | 2010-12-14 16:15:35 +0900 | 
|---|---|---|
| committer | Paul Mundt <lethal@linux-sh.org> | 2010-12-14 18:13:50 +0900 | 
| commit | 09dd7ded60019d6a4fd2ae20a08c4ad2bc3ed3e9 (patch) | |
| tree | de946eb710c3abe1e9042ee6f011a984bac1eafc | |
| parent | 598e227ea9af687547d46bff6906151e728f7b7b (diff) | |
ARM: mach-shmobile: Fix up pinmux entries in Makefile
Compiling in multiple CPUs into the same kernel binary
requires a Makefile update. With this patch in place
it is possible to enable the pinmux code for both the
SH7372 and the SH7377.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
| -rw-r--r-- | arch/arm/mach-shmobile/Makefile | 13 | 
1 files changed, 8 insertions, 5 deletions
| diff --git a/arch/arm/mach-shmobile/Makefile b/arch/arm/mach-shmobile/Makefile index 2d8328d5dd57..f5ad0892984d 100644 --- a/arch/arm/mach-shmobile/Makefile +++ b/arch/arm/mach-shmobile/Makefile @@ -12,11 +12,11 @@ obj-$(CONFIG_ARCH_SH7372)	+= setup-sh7372.o clock-sh7372.o intc-sh7372.o  obj-$(CONFIG_ARCH_SH73A0)	+= setup-sh73a0.o clock-sh73a0.o  # Pinmux setup -pfc-$(CONFIG_ARCH_SH7367)	:= pfc-sh7367.o -pfc-$(CONFIG_ARCH_SH7377)	:= pfc-sh7377.o -pfc-$(CONFIG_ARCH_SH7372)	:= pfc-sh7372.o -pfc-$(CONFIG_ARCH_SH73A0)	:= pfc-sh73a0.o -obj-$(CONFIG_GENERIC_GPIO)	+= $(pfc-y) +pfc-y				:= +pfc-$(CONFIG_ARCH_SH7367)	+= pfc-sh7367.o +pfc-$(CONFIG_ARCH_SH7377)	+= pfc-sh7377.o +pfc-$(CONFIG_ARCH_SH7372)	+= pfc-sh7372.o +pfc-$(CONFIG_ARCH_SH73A0)	+= pfc-sh73a0.o  # Board objects  obj-$(CONFIG_MACH_G3EVM)	+= board-g3evm.o @@ -24,3 +24,6 @@ obj-$(CONFIG_MACH_G4EVM)	+= board-g4evm.o  obj-$(CONFIG_MACH_AP4EVB)	+= board-ap4evb.o  obj-$(CONFIG_MACH_AG5EVM)	+= board-ag5evm.o  obj-$(CONFIG_MACH_MACKEREL)	+= board-mackerel.o + +# Framework support +obj-$(CONFIG_GENERIC_GPIO)	+= $(pfc-y) | 
