diff options
author | Len Brown <len.brown@intel.com> | 2011-01-12 05:25:30 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-01-12 05:27:25 +0100 |
commit | 5b026c4e3af52fda22c9313a3388344f82f3ba15 (patch) | |
tree | 5a8e834ce3d1c2e32a963f08efee9e3d4fc8e0d8 /drivers/sfi | |
parent | Linux 2.6.37 (diff) | |
download | linux-5b026c4e3af52fda22c9313a3388344f82f3ba15.tar.xz linux-5b026c4e3af52fda22c9313a3388344f82f3ba15.zip |
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>
Diffstat (limited to 'drivers/sfi')
-rw-r--r-- | drivers/sfi/sfi_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/sfi/sfi_core.c b/drivers/sfi/sfi_core.c index ceba593dc84f..04113e5304a0 100644 --- a/drivers/sfi/sfi_core.c +++ b/drivers/sfi/sfi_core.c @@ -101,7 +101,7 @@ static void __iomem * __ref sfi_map_memory(u64 phys, u32 size) return NULL; if (sfi_use_ioremap) - return ioremap(phys, size); + return ioremap_cache(phys, size); else return early_ioremap(phys, size); } |