remove ioremap_nocache and devm_ioremap_nocache

ioremap has provided non-cached semantics by default since the Linux 2.6
days, so remove the additional ioremap_nocache interface.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
此提交包含在:
Christoph Hellwig
2020-01-06 09:43:50 +01:00
父節點 d23cc63588
當前提交 4bdc0d676a
共有 368 個檔案被更改,包括 508 行新增581 行删除

查看文件

@@ -175,7 +175,7 @@ static int cc770_isa_probe(struct platform_device *pdev)
err = -EBUSY;
goto exit;
}
base = ioremap_nocache(mem[idx], iosize);
base = ioremap(mem[idx], iosize);
if (!base) {
err = -ENOMEM;
goto exit_release;