diff options
author | Kanoj Sarcar <kanoj@engr.sgi.com> | 2000-06-27 00:49:27 +0000 |
---|---|---|
committer | Kanoj Sarcar <kanoj@engr.sgi.com> | 2000-06-27 00:49:27 +0000 |
commit | fef84721fc04db3ce781aacf1c6e247acc7ba04b (patch) | |
tree | 7bef4738a4c48f048d20adeb3dc5f21ae05bd2bd /arch/mips64/kernel | |
parent | 58913b6073d4cf2138b201fc8034c834a5123302 (diff) |
Fix another minor typo - get the global/special page symbols to point
to their rightful locations.
Diffstat (limited to 'arch/mips64/kernel')
-rw-r--r-- | arch/mips64/kernel/head.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips64/kernel/head.S b/arch/mips64/kernel/head.S index 7292b77ff..f13bd9290 100644 --- a/arch/mips64/kernel/head.S +++ b/arch/mips64/kernel/head.S @@ -158,8 +158,8 @@ NESTED(bootstrap, 16, sp) .macro page name, order=0 .globl \name - .org . + (PAGE_SIZE << \order) \name: .size \name, (PAGE_SIZE << \order) + .org . + (PAGE_SIZE << \order) .type \name, @object .endm |