diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2018-10-09 13:51:39 +0000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-10-14 18:04:09 +1100 |
commit | 402a5698b4462a3dcfcf9bdafabed7f63c9be7d8 (patch) | |
tree | 88607d03cdcbfd80c2ed0f56ad84c31e6ca40cc5 /drivers/soc/fsl | |
parent | ed18e423a3d9b2dc9db801358b754e722fcabaff (diff) | |
download | linux-402a5698b4462a3dcfcf9bdafabed7f63c9be7d8.tar.gz linux-402a5698b4462a3dcfcf9bdafabed7f63c9be7d8.tar.bz2 linux-402a5698b4462a3dcfcf9bdafabed7f63c9be7d8.zip |
soc/fsl/qbman: use ioremap_cache() instead of ioremap_prot(0)
ioremap_prot() with flag set to 0 relies on a hack in
__ioremap_caller() which adds PAGE_KERNEL flags when the
handed flags don't look like a valid set of flags
(ie don't include _PAGE_PRESENT)
The intention being to map cached memory, use ioremap_cache() instead.
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/soc/fsl')
-rw-r--r-- | drivers/soc/fsl/qbman/qman_ccsr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/fsl/qbman/qman_ccsr.c b/drivers/soc/fsl/qbman/qman_ccsr.c index 79cba58387a5..0fbb201346c7 100644 --- a/drivers/soc/fsl/qbman/qman_ccsr.c +++ b/drivers/soc/fsl/qbman/qman_ccsr.c @@ -418,7 +418,7 @@ static size_t fqd_sz, pfdr_sz; static int zero_priv_mem(phys_addr_t addr, size_t sz) { /* map as cacheable, non-guarded */ - void __iomem *tmpp = ioremap_prot(addr, sz, 0); + void __iomem *tmpp = ioremap_cache(addr, sz); if (!tmpp) return -ENOMEM; |