Default ioremap is ioremap_nocache, so devm_ioremap has the same
function with devm_ioremap_nocache, which can just be killed to
save the size of devres.o

This patch is to use use devm_ioremap instead of devm_ioremap_nocache,
which should not have any function change but prepare for killing
devm_ioremap_nocache.

Cc: Boris Brezillon <boris.brezil...@free-electrons.com>
Cc: Richard Weinberger <rich...@nod.at>
Cc: Marek Vasut <marek.va...@gmail.com>
Cc: Cyrille Pitchen <cyrille.pitc...@wedev4u.fr>
Cc: linux-...@lists.infradead.org
Signed-off-by: Yisheng Xie <xieyishe...@huawei.com>
---
 drivers/mtd/nand/fsl_upm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/nand/fsl_upm.c b/drivers/mtd/nand/fsl_upm.c
index a88e2cf..30a8e9f 100644
--- a/drivers/mtd/nand/fsl_upm.c
+++ b/drivers/mtd/nand/fsl_upm.c
@@ -291,8 +291,8 @@ static int fun_probe(struct platform_device *ofdev)
                fun->wait_flags = FSL_UPM_WAIT_RUN_PATTERN |
                                  FSL_UPM_WAIT_WRITE_BYTE;
 
-       fun->io_base = devm_ioremap_nocache(&ofdev->dev, io_res.start,
-                                           resource_size(&io_res));
+       fun->io_base = devm_ioremap(&ofdev->dev, io_res.start,
+                                   resource_size(&io_res));
        if (!fun->io_base) {
                ret = -ENOMEM;
                goto err2;
-- 
1.8.3.1

Reply via email to