diff options
author | Anton Blanchard <anton@samba.org> | 2014-02-04 06:06:11 +0100 |
---|---|---|
committer | Anton Blanchard <anton@samba.org> | 2014-04-23 02:05:18 +0200 |
commit | 6a3bab90cf78bc579638525cb76ac240f8253803 (patch) | |
tree | 13f4f13ebb1bdebce54d33b0b899e4d9e7119355 /arch/powerpc/kernel/exceptions-64s.S | |
parent | powerpc: Don't use a function descriptor for system call table (diff) | |
download | linux-6a3bab90cf78bc579638525cb76ac240f8253803.tar.xz linux-6a3bab90cf78bc579638525cb76ac240f8253803.zip |
powerpc: Remove some unnecessary uses of _GLOBAL() and _STATIC()
There is no need to create a function descriptor for functions
called locally out of assembly.
Signed-off-by: Anton Blanchard <anton@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/exceptions-64s.S')
-rw-r--r-- | arch/powerpc/kernel/exceptions-64s.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/exceptions-64s.S b/arch/powerpc/kernel/exceptions-64s.S index f2f9d6144ae1..a0741b65f658 100644 --- a/arch/powerpc/kernel/exceptions-64s.S +++ b/arch/powerpc/kernel/exceptions-64s.S @@ -1536,7 +1536,7 @@ power4_fixup_nap: * Hash table stuff */ .align 7 -_STATIC(do_hash_page) +do_hash_page: std r3,_DAR(r1) std r4,_DSISR(r1) |