diff options
author | Anton Blanchard <anton@samba.org> | 2014-06-05 08:04:39 +1000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-06-05 13:20:41 +1000 |
commit | 2ac7b0166a9bc743893be3f38e7b1729ce975ab9 (patch) | |
tree | b8c00f151cc95552bff4db7b868e9627a6f816c5 /arch/powerpc/lib/string_64.S | |
parent | 6d97d7a28faf19199da12f2512cc7d37dd373cc0 (diff) | |
download | blackbird-obmc-linux-2ac7b0166a9bc743893be3f38e7b1729ce975ab9.tar.gz blackbird-obmc-linux-2ac7b0166a9bc743893be3f38e7b1729ce975ab9.zip |
powerpc: Exported functions __clear_user and copy_page use r2 so need _GLOBAL_TOC()
__clear_user and copy_page load from the TOC and are also exported
to modules. This means we have to use _GLOBAL_TOC() so that we
create the global entry point that sets up the TOC.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/lib/string_64.S')
-rw-r--r-- | arch/powerpc/lib/string_64.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/lib/string_64.S b/arch/powerpc/lib/string_64.S index 3b1e48049faf..7bd9549a90a2 100644 --- a/arch/powerpc/lib/string_64.S +++ b/arch/powerpc/lib/string_64.S @@ -77,7 +77,7 @@ err3; stb r0,0(r3) mr r3,r4 blr -_GLOBAL(__clear_user) +_GLOBAL_TOC(__clear_user) cmpdi r4,32 neg r6,r3 li r0,0 |