diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2015-10-10 17:08:32 +0100 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2015-10-26 16:00:13 +0100 |
commit | 7f8a9a7e98f99e9cd874eaf6ca2f00438c2a7c38 (patch) | |
tree | 15caeb15268d6b1f9cb42890a4b0fc4d28921c53 /drivers/mmc | |
parent | c41d31f71d8889919d2f3becbccd6d2d7a3bd243 (diff) | |
download | linux-7f8a9a7e98f99e9cd874eaf6ca2f00438c2a7c38.tar.gz linux-7f8a9a7e98f99e9cd874eaf6ca2f00438c2a7c38.tar.xz |
mmc: android-goldfish: Allow compiling the driver with COMPILE_TEST
The driver depends on GOLDFISH but there isn't a build dependency
so it's a good idea to allow the driver to always be built when the
COMPILE_TEST option is enabled.
That way, the driver can be built with a config generated by make
allyesconfig and check if a patch would break the build.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index 12b274a25735..56f5b1487008 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig @@ -473,7 +473,7 @@ config MMC_DAVINCI config MMC_GOLDFISH tristate "goldfish qemu Multimedia Card Interface support" - depends on GOLDFISH + depends on GOLDFISH || COMPILE_TEST help This selects the Goldfish Multimedia card Interface emulation found on the Goldfish Android virtual device emulation. |