From: Krzysztof Kozlowski Date: Tue, 2 Feb 2016 06:24:13 +0000 (+0900) Subject: drivers: soc: samsung: Enable COMPILE_TEST X-Git-Tag: v4.6-rc1~76^2~2^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b11301d5adef74c8f8d80eb5a134cc4f3057aaa0;p=thirdparty%2Fkernel%2Flinux.git drivers: soc: samsung: Enable COMPILE_TEST Get some build coverage of Exynos PMU driver. It depends on asm/cputype.h so its compilation is limited to ARM architectures. Signed-off-by: Krzysztof Kozlowski Reviewed-by: Javier Martinez Canillas --- diff --git a/drivers/soc/samsung/Kconfig b/drivers/soc/samsung/Kconfig index 2dff95dc697da..d7fc123006a31 100644 --- a/drivers/soc/samsung/Kconfig +++ b/drivers/soc/samsung/Kconfig @@ -1,13 +1,13 @@ # # SAMSUNG SoC drivers # -menu "Samsung SOC driver support" +menuconfig SOC_SAMSUNG + bool "Samsung SoC driver support" if COMPILE_TEST -config SOC_SAMSUNG - bool +if SOC_SAMSUNG config EXYNOS_PMU - bool - depends on ARM && ARCH_EXYNOS + bool "Exynos PMU controller driver" if COMPILE_TEST + depends on (ARM && ARCH_EXYNOS) || ((ARM || ARM64) && COMPILE_TEST) -endmenu +endif