diff options
Diffstat (limited to 'arch/x86/mm/ioremap_64.c')
-rw-r--r-- | arch/x86/mm/ioremap_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/ioremap_64.c b/arch/x86/mm/ioremap_64.c index d6cf14976827..2815ab60009b 100644 --- a/arch/x86/mm/ioremap_64.c +++ b/arch/x86/mm/ioremap_64.c | |||
@@ -138,7 +138,7 @@ EXPORT_SYMBOL(__ioremap); | |||
138 | 138 | ||
139 | void __iomem *ioremap_nocache (unsigned long phys_addr, unsigned long size) | 139 | void __iomem *ioremap_nocache (unsigned long phys_addr, unsigned long size) |
140 | { | 140 | { |
141 | return __ioremap(phys_addr, size, _PAGE_PCD); | 141 | return __ioremap(phys_addr, size, _PAGE_PCD | _PAGE_PWT); |
142 | } | 142 | } |
143 | EXPORT_SYMBOL(ioremap_nocache); | 143 | EXPORT_SYMBOL(ioremap_nocache); |
144 | 144 | ||