Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1368137
| From | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] nvmem: Fix build error of missing devm_ioremap_resource on UM |
| Date | 2016-03-31 12:10 +0200 |
| Message-ID | <riHI6-3m0-17@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Krzysztof Kozlowski <k.kozlowski@samsung.com> The devres.o gets linked if HAS_IOMEM is present so on ARCH=um allyesconfig (COMPILE_TEST) failed on many files with: drivers/built-in.o: In function `mtk_thermal_probe': mtk_thermal.c:(.text+0x394618): undefined reference to `devm_ioremap_resource' The users of devm_ioremap_resource() which are compile-testable should depend on HAS_IOMEM. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> --- Hi Greg, Can you please take this fix in next possible rc. Thanks, srini drivers/nvmem/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig index ca52952..9c0c59d 100644 --- a/drivers/nvmem/Kconfig +++ b/drivers/nvmem/Kconfig @@ -28,6 +28,7 @@ config NVMEM_IMX_OCOTP config NVMEM_LPC18XX_EEPROM tristate "NXP LPC18XX EEPROM Memory Support" depends on ARCH_LPC18XX || COMPILE_TEST + depends on HAS_IOMEM help Say Y here to include support for NXP LPC18xx EEPROM memory found in NXP LPC185x/3x and LPC435x/3x/2x/1x devices. @@ -49,6 +50,7 @@ config NVMEM_MXS_OCOTP config MTK_EFUSE tristate "Mediatek SoCs EFUSE support" depends on ARCH_MEDIATEK || COMPILE_TEST + depends on HAS_IOMEM select REGMAP_MMIO help This is a driver to access hardware related data like sensor -- 2.5.0
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] nvmem: Fix build error of missing devm_ioremap_resource on UM Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2016-03-31 12:10 +0200
csiph-web