Browse Source

mtd: nand: oxnas_nand: fix build errors on arch/um, require HAS_IOMEM

Fix build errors on arch/um, which does not support HAS_IOMEM,
while the oxnas_nand.c driver uses interfaces that are
supplied by HAS_IOMEM.

(loadable module build:)
ERROR: "devm_ioremap_resource" [drivers/mtd/nand/oxnas_nand.ko] undefined!
or (built-in build:)
drivers/built-in.o: In function `oxnas_nand_probe':
drivers/mtd/nand/oxnas_nand.c:102: undefined reference to `devm_ioremap_resource'

Fixes: 668592492409 ("mtd: nand: Add OX820 NAND Support")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Randy Dunlap 8 years ago
parent
commit
f0fcdc506b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/mtd/nand/Kconfig

+ 1 - 0
drivers/mtd/nand/Kconfig

@@ -426,6 +426,7 @@ config MTD_NAND_ORION
 
 
 config MTD_NAND_OXNAS
 config MTD_NAND_OXNAS
 	tristate "NAND Flash support for Oxford Semiconductor SoC"
 	tristate "NAND Flash support for Oxford Semiconductor SoC"
+	depends on HAS_IOMEM
 	help
 	help
 	  This enables the NAND flash controller on Oxford Semiconductor SoCs.
 	  This enables the NAND flash controller on Oxford Semiconductor SoCs.