According to upstream commit 4bdc0d676a64("remove
ioremap_nocache and devm_ioremap_nocache "), replace
devm_ioremap_nocache() with devm_ioremap().

Signed-off-by: Zhantao Tang <zhantao.t...@windriver.com>
---
 drivers/crypto/hse/hse-uio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/crypto/hse/hse-uio.c b/drivers/crypto/hse/hse-uio.c
index c75e719b94ba..5b916a41732f 100644
--- a/drivers/crypto/hse/hse-uio.c
+++ b/drivers/crypto/hse/hse-uio.c
@@ -202,7 +202,7 @@ void *hse_uio_register(struct device *dev, void *mu)
        priv->info.priv = priv;
 
        /* map HSE shared RAM area */
-       priv->shm = devm_ioremap_nocache(dev, HSE_SHARED_RAM_ADDR,
+       priv->shm = devm_ioremap(dev, HSE_SHARED_RAM_ADDR,
                                         HSE_SHARED_RAM_SIZE);
        if (IS_ERR_OR_NULL(priv->shm))
                return ERR_PTR(-ENOMEM);
-- 
2.25.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#9711): 
https://lists.yoctoproject.org/g/linux-yocto/message/9711
Mute This Topic: https://lists.yoctoproject.org/mt/81913015/21656
Group Owner: linux-yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to