From: Ingo Molnar Date: Wed, 26 Mar 2008 05:19:45 +0000 (+0100) Subject: x86: revert ucminus change X-Git-Tag: v2.6.26-rc1~1154^2~292 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=55c626820a82b25d7fceca702e9422037ae80626;p=linux-2.6-omap-h63xx.git x86: revert ucminus change Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index 3d0a589d92c..df95d1d6b4d 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c @@ -159,11 +159,7 @@ static void __iomem *__ioremap(resource_size_t phys_addr, unsigned long size, switch (mode) { case IOR_MODE_UNCACHED: default: - /* - * FIXME: we will use UC MINUS for now, as video fb drivers - * depend on it. Upcoming ioremap_wc() will fix this behavior. - */ - prot = PAGE_KERNEL_UC_MINUS; + prot = PAGE_KERNEL_NOCACHE; break; case IOR_MODE_CACHED: prot = PAGE_KERNEL;