aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2014-01-14 10:45:00 -0500
committerJonathan Cameron <jic23@kernel.org>2014-01-18 06:40:59 -0500
commit1c51eb0bcf3489f72e1923241db7b6993442b13f (patch)
tree193c7fd343ef87cf25615c984c6a8742283ae718
parent3b5c1635d12a670a0fea5542ada5bceb6536ae85 (diff)
staging:iio:spear_adc: Add dependency on HAS_IOMEM
On archs like S390 or um this driver cannot build nor work. Make it depend on HAS_IOMEM to bypass build failures. drivers/staging/iio/adc/spear_adc.c: In function ‘spear_adc_probe’: drivers/staging/iio/adc/spear_adc.c:393:2: error: implicit declaration of function ‘iounmap’ [-Werror=implicit-function-declaration Signed-off-by: Richard Weinberger <richard@nod.at> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r--drivers/staging/iio/adc/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/iio/adc/Kconfig b/drivers/staging/iio/adc/Kconfig
index e3d643001952..7d5d6755db7f 100644
--- a/drivers/staging/iio/adc/Kconfig
+++ b/drivers/staging/iio/adc/Kconfig
@@ -128,6 +128,7 @@ config MXS_LRADC
128config SPEAR_ADC 128config SPEAR_ADC
129 tristate "ST SPEAr ADC" 129 tristate "ST SPEAr ADC"
130 depends on PLAT_SPEAR || COMPILE_TEST 130 depends on PLAT_SPEAR || COMPILE_TEST
131 depends on HAS_IOMEM
131 help 132 help
132 Say yes here to build support for the integrated ADC inside the 133 Say yes here to build support for the integrated ADC inside the
133 ST SPEAr SoC. Provides direct access via sysfs. 134 ST SPEAr SoC. Provides direct access via sysfs.