diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2014-02-26 15:57:56 +0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2014-03-05 06:40:50 +0400 |
commit | facadba6a12813d8bbc5586261d873fa5f3dd4fa (patch) | |
tree | 635788d6833b451f8c59fdcbfa94563c37f7f9af /arch/arm/mach-imx/Makefile | |
parent | c356bdb407baf23b202a6b4d2234114db6ae55bd (diff) | |
download | linux-facadba6a12813d8bbc5586261d873fa5f3dd4fa.tar.xz |
ARM: imx6: build headsmp.o only on CONFIG_SMP
With v7_cpu_resume() being moved out of headsmp.S, all the remaining
code in the file is only needed by CONFIG_SMP build. So we can control
the build of headsmp.o with only obj-$(CONFIG_SMP) now.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-imx/Makefile')
-rw-r--r-- | arch/arm/mach-imx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/Makefile b/arch/arm/mach-imx/Makefile index b4c19cda67e8..9c776a03bb40 100644 --- a/arch/arm/mach-imx/Makefile +++ b/arch/arm/mach-imx/Makefile @@ -104,9 +104,9 @@ obj-$(CONFIG_SOC_IMX6SL) += clk-imx6sl.o mach-imx6sl.o AFLAGS_suspend-imx6.o :=-Wa,-march=armv7-a obj-$(CONFIG_SUSPEND) += suspend-imx6.o -obj-$(CONFIG_SOC_IMX6Q) += pm-imx6q.o headsmp.o +obj-$(CONFIG_SOC_IMX6Q) += pm-imx6q.o # i.MX6SL reuses i.MX6Q code -obj-$(CONFIG_SOC_IMX6SL) += pm-imx6q.o headsmp.o +obj-$(CONFIG_SOC_IMX6SL) += pm-imx6q.o # i.MX5 based machines obj-$(CONFIG_MACH_MX51_BABBAGE) += mach-mx51_babbage.o |