Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1322399
| From | Jonathan Cameron <jic23@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 06/22] iio: adc: Fix dependencies for !HAS_IOMEM archs |
| Date | 2016-01-30 16:50 +0100 |
| Message-ID | <qWFWG-5B6-15@gated-at.bofh.it> (permalink) |
| References | <qUXO2-2e8-9@gated-at.bofh.it> <qUXXI-2jh-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 25/01/16 22:24, Richard Weinberger wrote: > Not every arch has io memory. > So, unbreak the build by fixing the dependencies. > > Signed-off-by: Richard Weinberger <richard@nod.at> Applied to the temporary branch for post 4.5 fixes (as I haven't unwound that yet) for iio.git. > --- > drivers/iio/adc/Kconfig | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/iio/adc/Kconfig b/drivers/iio/adc/Kconfig > index 605ff42..283ded7 100644 > --- a/drivers/iio/adc/Kconfig > +++ b/drivers/iio/adc/Kconfig > @@ -175,6 +175,7 @@ config DA9150_GPADC > config EXYNOS_ADC > tristate "Exynos ADC driver support" > depends on ARCH_EXYNOS || ARCH_S3C24XX || ARCH_S3C64XX || (OF && COMPILE_TEST) > + depends on HAS_IOMEM > help > Core support for the ADC block found in the Samsung EXYNOS series > of SoCs for drivers such as the touchscreen and hwmon to use to share > @@ -207,6 +208,7 @@ config INA2XX_ADC > config IMX7D_ADC > tristate "IMX7D ADC driver" > depends on ARCH_MXC || COMPILE_TEST > + depends on HAS_IOMEM > help > Say yes here to build support for IMX7D ADC. > > @@ -409,6 +411,7 @@ config TWL6030_GPADC > config VF610_ADC > tristate "Freescale vf610 ADC driver" > depends on OF > + depends on HAS_IOMEM > select IIO_BUFFER > select IIO_TRIGGERED_BUFFER > help >
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
Re: [PATCH 06/22] iio: adc: Fix dependencies for !HAS_IOMEM archs Jonathan Cameron <jic23@kernel.org> - 2016-01-30 16:50 +0100
csiph-web