Re: [PATCH] iio: adc: Fix build error of missing devm_ioremap_resource on UM

2016-03-28 Thread Jonathan Cameron
On 05/03/16 18:49, Jonathan Cameron wrote: > On 04/03/16 01:05, Krzysztof Kozlowski wrote: >> The devres.o gets linked if HAS_IOMEM is present so on ARCH=um >> allyesconfig (COMPILE_TEST) failed with: >> >> drivers/built-in.o: In function `at91_adc_probe': >> at91-sama5d2_adc.c:(.text+0x48f548):

Re: [PATCH] iio: adc: Fix build error of missing devm_ioremap_resource on UM

2016-03-28 Thread Jonathan Cameron
On 05/03/16 18:49, Jonathan Cameron wrote: > On 04/03/16 01:05, Krzysztof Kozlowski wrote: >> The devres.o gets linked if HAS_IOMEM is present so on ARCH=um >> allyesconfig (COMPILE_TEST) failed with: >> >> drivers/built-in.o: In function `at91_adc_probe': >> at91-sama5d2_adc.c:(.text+0x48f548):

Re: [PATCH] iio: adc: Fix build error of missing devm_ioremap_resource on UM

2016-03-05 Thread Jonathan Cameron
On 04/03/16 01:05, Krzysztof Kozlowski wrote: > The devres.o gets linked if HAS_IOMEM is present so on ARCH=um > allyesconfig (COMPILE_TEST) failed with: > > drivers/built-in.o: In function `at91_adc_probe': > at91-sama5d2_adc.c:(.text+0x48f548): undefined reference to > `devm_ioremap_resource'

Re: [PATCH] iio: adc: Fix build error of missing devm_ioremap_resource on UM

2016-03-05 Thread Jonathan Cameron
On 04/03/16 01:05, Krzysztof Kozlowski wrote: > The devres.o gets linked if HAS_IOMEM is present so on ARCH=um > allyesconfig (COMPILE_TEST) failed with: > > drivers/built-in.o: In function `at91_adc_probe': > at91-sama5d2_adc.c:(.text+0x48f548): undefined reference to > `devm_ioremap_resource'

[PATCH] iio: adc: Fix build error of missing devm_ioremap_resource on UM

2016-03-03 Thread Krzysztof Kozlowski
The devres.o gets linked if HAS_IOMEM is present so on ARCH=um allyesconfig (COMPILE_TEST) failed with: drivers/built-in.o: In function `at91_adc_probe': at91-sama5d2_adc.c:(.text+0x48f548): undefined reference to `devm_ioremap_resource' Signed-off-by: Krzysztof Kozlowski

[PATCH] iio: adc: Fix build error of missing devm_ioremap_resource on UM

2016-03-03 Thread Krzysztof Kozlowski
The devres.o gets linked if HAS_IOMEM is present so on ARCH=um allyesconfig (COMPILE_TEST) failed with: drivers/built-in.o: In function `at91_adc_probe': at91-sama5d2_adc.c:(.text+0x48f548): undefined reference to `devm_ioremap_resource' Signed-off-by: Krzysztof Kozlowski ---