forked from Minki/linux
0f8f9c2b6c
S3C2416 PM code uses low-level sleep routines from S3C2412 code, but these routines are compiled only for S3C2412 SoC. Split S3C2412_PM to two parts: S3C2412_PM, S3C2412_PM_SLEEP and select last in S3C2416's Kconfig. Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
26 lines
594 B
Makefile
26 lines
594 B
Makefile
# arch/arm/mach-s3c2412/Makefile
|
|
#
|
|
# Copyright 2007 Simtec Electronics
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
obj-$(CONFIG_CPU_S3C2412) += s3c2412.o
|
|
obj-$(CONFIG_CPU_S3C2412) += irq.o
|
|
obj-$(CONFIG_CPU_S3C2412) += clock.o
|
|
obj-$(CONFIG_CPU_S3C2412) += gpio.o
|
|
obj-$(CONFIG_S3C2412_DMA) += dma.o
|
|
obj-$(CONFIG_S3C2412_PM) += pm.o
|
|
obj-$(CONFIG_S3C2412_PM_SLEEP) += sleep.o
|
|
obj-$(CONFIG_S3C2412_CPUFREQ) += cpu-freq.o
|
|
|
|
# Machine support
|
|
|
|
obj-$(CONFIG_MACH_JIVE) += mach-jive.o
|
|
obj-$(CONFIG_MACH_SMDK2413) += mach-smdk2413.o
|
|
obj-$(CONFIG_MACH_VSTMS) += mach-vstms.o
|