diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-10 16:20:10 +0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-10 16:20:10 +0400 |
commit | b3b8dc6c07cecc1f8d52d03f677206bdf9f794c9 (patch) | |
tree | 5d5c3ac4de563d03759d98399030aac00be33023 /arch/powerpc/kernel/head_32.S | |
parent | ff64208df7eb17c5526197449762ff5e04a95de6 (diff) | |
download | linux-b3b8dc6c07cecc1f8d52d03f677206bdf9f794c9.tar.xz |
powerpc: Use reg.h instead of processor.h when we just want reg names
Now that the register names and bit definitions are all in reg.h,
use that instead of processor.h in assembly code in a few places.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/head_32.S')
-rw-r--r-- | arch/powerpc/kernel/head_32.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/head_32.S b/arch/powerpc/kernel/head_32.S index d9dbbd426744..108e78ef3878 100644 --- a/arch/powerpc/kernel/head_32.S +++ b/arch/powerpc/kernel/head_32.S @@ -23,7 +23,7 @@ */ #include <linux/config.h> -#include <asm/processor.h> +#include <asm/reg.h> #include <asm/page.h> #include <asm/mmu.h> #include <asm/pgtable.h> @@ -55,8 +55,8 @@ 1: .text - .stabs "arch/ppc/kernel/",N_SO,0,0,0f - .stabs "head.S",N_SO,0,0,0f + .stabs "arch/powerpc/kernel/",N_SO,0,0,0f + .stabs "head_32.S",N_SO,0,0,0f 0: .globl _stext _stext: |