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

Commit 9479f7cc authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski
Browse files

soc: samsung: pm_domains: Enable COMPILE_TEST for build coverage



Introduce a platform selectable symbol EXYNOS_PM_DOMAINS which can be
also toggled on by COMPILE_TEST for some build coverage.

Signed-off-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
parent c028e175
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ menuconfig ARCH_EXYNOS
	select EXYNOS_THERMAL
	select EXYNOS_PMU
	select EXYNOS_SROM
	select EXYNOS_PM_DOMAINS if PM_GENERIC_DOMAINS
	select HAVE_ARM_SCU if SMP
	select HAVE_S3C2410_I2C if I2C
	select HAVE_S3C2410_WATCHDOG if WATCHDOG
+4 −0
Original line number Diff line number Diff line
@@ -10,4 +10,8 @@ config EXYNOS_PMU
	bool "Exynos PMU controller driver" if COMPILE_TEST
	depends on (ARM && ARCH_EXYNOS) || ((ARM || ARM64) && COMPILE_TEST)

config EXYNOS_PM_DOMAINS
	bool "Exynos PM domains" if COMPILE_TEST
	depends on PM_GENERIC_DOMAINS || COMPILE_TEST

endif
+1 −1
Original line number Diff line number Diff line
obj-$(CONFIG_EXYNOS_PMU)	+= exynos-pmu.o exynos3250-pmu.o exynos4-pmu.o \
					exynos5250-pmu.o exynos5420-pmu.o
obj-$(CONFIG_PM_GENERIC_DOMAINS) += pm_domains.o
obj-$(CONFIG_EXYNOS_PM_DOMAINS) += pm_domains.o