diff options
author | Anton Blanchard <anton@samba.org> | 2014-10-13 19:41:39 +1100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2014-10-15 11:23:20 +1100 |
commit | acf620ecf56cfc4edaffaf158250e128539cdd26 (patch) | |
tree | d2ec25a6890d89232feb266f6dc815064ca3f155 /arch/powerpc/kernel/misc.S | |
parent | bfe9a2cfe91a1c920f152ce5fd0a9ad74b3daf12 (diff) | |
download | blackbird-obmc-linux-acf620ecf56cfc4edaffaf158250e128539cdd26.tar.gz blackbird-obmc-linux-acf620ecf56cfc4edaffaf158250e128539cdd26.zip |
powerpc: Rename __get_SP() to current_stack_pointer()
Michael points out that __get_SP() is a pretty horrible
function name. Let's give it a better name.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/kernel/misc.S')
-rw-r--r-- | arch/powerpc/kernel/misc.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/misc.S b/arch/powerpc/kernel/misc.S index 120deb713bc8..0d432194c018 100644 --- a/arch/powerpc/kernel/misc.S +++ b/arch/powerpc/kernel/misc.S @@ -115,6 +115,6 @@ _GLOBAL(longjmp) mr r3,r4 blr -_GLOBAL(__get_SP) +_GLOBAL(current_stack_pointer) PPC_LL r3,0(r1) blr |