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>
此提交包含在:
@@ -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;
|
||||
|
新增問題並參考
封鎖使用者