diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2017-08-23 16:54:34 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2017-09-01 16:42:45 +1000 |
commit | c0622167e3d4195d50b925bfabd8966589635e75 (patch) | |
tree | db3f43e2dda4fe3bb0d15166fc81833c03d3a930 /arch/powerpc/mm/hash_low_32.S | |
parent | da74f659205ea08cb0fd0b3050637b0e0eb31520 (diff) | |
download | op-kernel-dev-c0622167e3d4195d50b925bfabd8966589635e75.zip op-kernel-dev-c0622167e3d4195d50b925bfabd8966589635e75.tar.gz |
powerpc: fix location of two EXPORT_SYMBOL
Commit 9445aa1a3062a ("ppc: move exports to definitions")
added EXPORT_SYMBOL() for memset() and flush_hash_pages() in
the middle of the functions.
This patch moves them at the end of the two functions.
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/mm/hash_low_32.S')
-rw-r--r-- | arch/powerpc/mm/hash_low_32.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/hash_low_32.S b/arch/powerpc/mm/hash_low_32.S index 6f962e5..ffbd7c0 100644 --- a/arch/powerpc/mm/hash_low_32.S +++ b/arch/powerpc/mm/hash_low_32.S @@ -575,7 +575,6 @@ _GLOBAL(flush_hash_pages) rlwinm r8,r8,0,31,29 /* clear HASHPTE bit */ stwcx. r8,0,r5 /* update the pte */ bne- 33b -EXPORT_SYMBOL(flush_hash_pages) /* Get the address of the primary PTE group in the hash table (r3) */ _GLOBAL(flush_hash_patch_A) @@ -634,6 +633,7 @@ _GLOBAL(flush_hash_patch_B) SYNC_601 isync blr +EXPORT_SYMBOL(flush_hash_pages) /* * Flush an entry from the TLB |