diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-01-14 07:33:46 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-08-08 06:50:09 +0300 |
commit | 9445aa1a3062a75a4d9de78026816ebc941e7b99 (patch) | |
tree | 6ee8ffd4ab14b01e2d692e376d32fe36fefb8220 /arch/powerpc/kernel/fpu.S | |
parent | 4dd1837d7589f468ed109556513f476e7a7f9121 (diff) | |
download | linux-9445aa1a3062a75a4d9de78026816ebc941e7b99.tar.xz |
ppc: move exports to definitions
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/powerpc/kernel/fpu.S')
-rw-r--r-- | arch/powerpc/kernel/fpu.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/fpu.S b/arch/powerpc/kernel/fpu.S index 15da2b5df85e..aa52b6be9026 100644 --- a/arch/powerpc/kernel/fpu.S +++ b/arch/powerpc/kernel/fpu.S @@ -24,6 +24,7 @@ #include <asm/ppc_asm.h> #include <asm/asm-offsets.h> #include <asm/ptrace.h> +#include <asm/export.h> #ifdef CONFIG_VSX #define __REST_32FPVSRS(n,c,base) \ @@ -85,6 +86,7 @@ _GLOBAL(load_fp_state) MTFSF_L(fr0) REST_32FPVSRS(0, R4, R3) blr +EXPORT_SYMBOL(load_fp_state) /* * Store FP state into memory, including FPSCR @@ -95,6 +97,7 @@ _GLOBAL(store_fp_state) mffs fr0 stfd fr0,FPSTATE_FPSCR(r3) blr +EXPORT_SYMBOL(store_fp_state) /* * This task wants to use the FPU now. |