diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2008-05-13 12:55:40 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-25 02:58:33 -0400 |
commit | 0e192b99d7d09f08b445c31ee7c7f3d0bfb27345 (patch) | |
tree | 6debb50682661428b79740b85e54e7e918a54bed | |
parent | 05139d8fb445d9a3569071af1c5920fc46191b7b (diff) |
x86: head_64.S cleanup - use PMD_SHIFT instead of numeric constant
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/kernel/head_64.S | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86/kernel/head_64.S b/arch/x86/kernel/head_64.S index 7475b4c91f05..d8ed3259e6e4 100644 --- a/arch/x86/kernel/head_64.S +++ b/arch/x86/kernel/head_64.S | |||
@@ -322,11 +322,11 @@ early_idt_ripmsg: | |||
322 | ENTRY(name) | 322 | ENTRY(name) |
323 | 323 | ||
324 | /* Automate the creation of 1 to 1 mapping pmd entries */ | 324 | /* Automate the creation of 1 to 1 mapping pmd entries */ |
325 | #define PMDS(START, PERM, COUNT) \ | 325 | #define PMDS(START, PERM, COUNT) \ |
326 | i = 0 ; \ | 326 | i = 0 ; \ |
327 | .rept (COUNT) ; \ | 327 | .rept (COUNT) ; \ |
328 | .quad (START) + (i << 21) + (PERM) ; \ | 328 | .quad (START) + (i << PMD_SHIFT) + (PERM) ; \ |
329 | i = i + 1 ; \ | 329 | i = i + 1 ; \ |
330 | .endr | 330 | .endr |
331 | 331 | ||
332 | /* | 332 | /* |