[<prev] [next>] [day] [month] [year] [list]
Message-id: <alpine.LFD.2.02.1101112329590.11311@x980>
Date: Tue, 11 Jan 2011 23:32:03 -0500 (EST)
From: Len Brown <lenb@...nel.org>
To: sfi-devel@...plefirmware.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] SFI: use ioremap_cache() instead of ioremap()
From: Len Brown <len.brown@...el.com>
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@...el.com>
---
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 ceba593..04113e5 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);
}
--
1.7.4.rc1.7.g2cf08
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists