From: Stephen M. Cameron Date: Thu, 26 Jul 2012 16:34:23 +0000 (-0500) Subject: [SCSI] hpsa: use ioremap_nocache instead of ioremap X-Git-Tag: next-20120917~76^2~2^2~57 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=088ba34c92055547ef4cc862a863334c01d9a304;p=karo-tx-linux.git [SCSI] hpsa: use ioremap_nocache instead of ioremap I think ioremap() ends up being equivalent to ioremap_nocache by default, but we should signal our intent that these mappings should be non-cacheable. Signed-off-by: Stephen M. Cameron Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index 415db96ec1ed..5ed5859f4b6c 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c @@ -3337,7 +3337,8 @@ static void __iomem *remap_pci_mem(ulong base, ulong size) { ulong page_base = ((ulong) base) & PAGE_MASK; ulong page_offs = ((ulong) base) - page_base; - void __iomem *page_remapped = ioremap(page_base, page_offs + size); + void __iomem *page_remapped = ioremap_nocache(page_base, + page_offs + size); return page_remapped ? (page_remapped + page_offs) : NULL; }