Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0f8f9c2b authored by Yauhen Kharuzhy's avatar Yauhen Kharuzhy Committed by Kukjin Kim
Browse files

ARM S3C24XX: Fix compilation of PM code for S3C2416



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: default avatarYauhen Kharuzhy <jekhor@gmail.com>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 258b78c3
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -28,9 +28,16 @@ config S3C2412_DMA

config S3C2412_PM
	bool
	select S3C2412_PM_SLEEP
	help
	  Internal config node to apply S3C2412 power management

config S3C2412_PM_SLEEP
	bool
	help
	  Internal config node to apply sleep for S3C2412 power management.
	  Can be selected by another SoCs with similar sleep procedure.

# Note, the S3C2412 IOtiming support is in plat-s3c24xx

config S3C2412_CPUFREQ
+2 −1
Original line number Diff line number Diff line
@@ -14,7 +14,8 @@ 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 sleep.o
obj-$(CONFIG_S3C2412_PM)	+= pm.o
obj-$(CONFIG_S3C2412_PM_SLEEP)	+= sleep.o
obj-$(CONFIG_S3C2412_CPUFREQ)	+= cpu-freq.o

# Machine support
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ config S3C2416_DMA

config S3C2416_PM
	bool
	select S3C2412_PM_SLEEP
	help
	  Internal config node to apply S3C2416 power management