diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2016-10-14 09:57:32 -0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2016-11-29 08:21:22 +0000 |
commit | 108fbd619869e44f7b70c97e30b5a5d0114791af (patch) | |
tree | 6a924b7c91f339eb92b3fd611b3e2643a83ff5fc /drivers/mfd/Kconfig | |
parent | 23feb7c6e1245ea76b89c9b22d9cc4a4dfb37626 (diff) | |
download | linux-stable-108fbd619869e44f7b70c97e30b5a5d0114791af.tar.gz linux-stable-108fbd619869e44f7b70c97e30b5a5d0114791af.tar.bz2 linux-stable-108fbd619869e44f7b70c97e30b5a5d0114791af.zip |
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 <javier@osg.samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/Kconfig')
-rw-r--r-- | drivers/mfd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
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. |