浏览代码

block: pmem: Add dependency on HAS_IOMEM

Not all architectures have io memory.

Fixes:
drivers/block/pmem.c: In function ‘pmem_alloc’:
drivers/block/pmem.c:146:2: error: implicit declaration of function ‘ioremap_nocache’ [-Werror=implicit-function-declaration]
  pmem->virt_addr = ioremap_nocache(pmem->phys_addr, pmem->size);
  ^
drivers/block/pmem.c:146:18: warning: assignment makes pointer from integer without a cast [enabled by default]
  pmem->virt_addr = ioremap_nocache(pmem->phys_addr, pmem->size);
                  ^
drivers/block/pmem.c:182:2: error: implicit declaration of function ‘iounmap’ [-Werror=implicit-function-declaration]
  iounmap(pmem->virt_addr);
  ^

Signed-off-by: Richard Weinberger <richard@nod.at>
Reviewed-by: Ross Zwisler <ross.zwisler@linux.intel.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Richard Weinberger 10 年之前
父节点
当前提交
b6f2098fb7
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      drivers/block/Kconfig

+ 1 - 0
drivers/block/Kconfig

@@ -406,6 +406,7 @@ config BLK_DEV_RAM_DAX
 
 
 config BLK_DEV_PMEM
 config BLK_DEV_PMEM
 	tristate "Persistent memory block device support"
 	tristate "Persistent memory block device support"
+	depends on HAS_IOMEM
 	help
 	help
 	  Saying Y here will allow you to use a contiguous range of reserved
 	  Saying Y here will allow you to use a contiguous range of reserved
 	  memory as one or more persistent block devices.
 	  memory as one or more persistent block devices.