aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2008-01-30 07:31:08 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:08 -0500
commit929fd589135ed417663f1b75b8031c9cf6687700 (patch)
tree4c7dcaa88ce62a69d969899f0febadc0c56923dd /arch
parent954683a2c19696114894384e34f858bb9f455b11 (diff)
x86: some whitespace cleanups in paging code
This patch does some whitespace cleanups in the paging code to fix some checkpatch.pl warnings of my formerly merged cleanup patches. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/mm/init_64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
index 3f8bf298dbb8..5cadbb40da3e 100644
--- a/arch/x86/mm/init_64.c
+++ b/arch/x86/mm/init_64.c
@@ -226,7 +226,7 @@ __meminit void *early_ioremap(unsigned long addr, unsigned long size)
226 vaddr += addr & ~PMD_MASK; 226 vaddr += addr & ~PMD_MASK;
227 addr &= PMD_MASK; 227 addr &= PMD_MASK;
228 for (i = 0; i < pmds; i++, addr += PMD_SIZE) 228 for (i = 0; i < pmds; i++, addr += PMD_SIZE)
229 set_pmd(pmd + i,__pmd(addr | __PAGE_KERNEL_LARGE_EXEC)); 229 set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
230 __flush_tlb(); 230 __flush_tlb();
231 return (void *)vaddr; 231 return (void *)vaddr;
232 next: 232 next: