SFI: use ioremap_cache() instead of ioremap()
We copied ACPI's oversight of using ioremap() and creating non-cached table mappings when we should have been using ioremap_cache(). Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
3c0eee3fe6
commit
5b026c4e3a
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ static void __iomem * __ref sfi_map_memory(u64 phys, u32 size)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (sfi_use_ioremap)
|
if (sfi_use_ioremap)
|
||||||
return ioremap(phys, size);
|
return ioremap_cache(phys, size);
|
||||||
else
|
else
|
||||||
return early_ioremap(phys, size);
|
return early_ioremap(phys, size);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue