diff options
author | Richard Weinberger <richard@nod.at> | 2014-01-14 15:45:00 +0000 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2014-01-18 11:49:39 +0000 |
commit | 8c314da583c9d5c67fe59aa8c92f94f15cb8de90 (patch) | |
tree | f2f9db942d8aa6cb8dfa2320498f22e4c015da74 | |
parent | 1c51eb0bcf3489f72e1923241db7b6993442b13f (diff) |
staging:iio:lpc32xx_adc: Add dependency on HAS_IOMEMiio-fixes-for-3.14a
On archs like S390 or um this driver cannot build nor work.
Make it depend on HAS_IOMEM to bypass build failures.
drivers/built-in.o: In function `lpc32xx_adc_probe':
drivers/staging/iio/adc/lpc32xx_adc.c:149: undefined reference to `devm_ioremap'
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r-- | drivers/staging/iio/adc/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/iio/adc/Kconfig b/drivers/staging/iio/adc/Kconfig index 7d5d6755db7f..363329808a4f 100644 --- a/drivers/staging/iio/adc/Kconfig +++ b/drivers/staging/iio/adc/Kconfig @@ -103,6 +103,7 @@ config AD7280 config LPC32XX_ADC tristate "NXP LPC32XX ADC" depends on ARCH_LPC32XX || COMPILE_TEST + depends on HAS_IOMEM help Say yes here to build support for the integrated ADC inside the LPC32XX SoC. Note that this feature uses the same hardware as the |