From: Javier Martinez Canillas Date: Fri, 14 Oct 2016 12:57:32 +0000 (-0300) Subject: mfd: abx500-core: Allow driver to built if COMPILE_TEST is enabled X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=108fbd619869e44f7b70c97e30b5a5d0114791af;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git mfd: abx500-core: Allow driver to built if COMPILE_TEST is enabled The driver only has runtime but no build time dependency with ARCH_U300 || ARCH_U8500 So it can be built for testing purposes if COMPILE_TEST option is enabled. This is useful to have more build coverage and make sure that the driver is not affected by changes that could cause build regressions. Signed-off-by: Javier Martinez Canillas Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 01ef4fed9e3c..c7dd32870558 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -967,7 +967,7 @@ config MFD_SMSC config ABX500_CORE bool "ST-Ericsson ABX500 Mixed Signal Circuit register functions" - default y if ARCH_U300 || ARCH_U8500 + default y if ARCH_U300 || ARCH_U8500 || COMPILE_TEST help Say yes here if you have the ABX500 Mixed Signal IC family chips. This core driver expose register access functions.