diff options
author | Anton Blanchard <anton@samba.org> | 2014-08-19 18:00:02 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2014-09-25 09:14:38 -0400 |
commit | e1802b065d189cdfa25eaf6d019c222a91618b9c (patch) | |
tree | f2d70f072b1b622798bd6489727cf3021eac95ce /arch/powerpc/kernel/process.c | |
parent | 4a1b08e84454f9eb46bcb1aaf307421a4df46de2 (diff) |
powerpc: Move more symbol exports next to function definitions
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/kernel/process.c')
-rw-r--r-- | arch/powerpc/kernel/process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c index bf44ae962ab8..aa1df89c8b2a 100644 --- a/arch/powerpc/kernel/process.c +++ b/arch/powerpc/kernel/process.c | |||
@@ -228,6 +228,7 @@ void giveup_vsx(struct task_struct *tsk) | |||
228 | giveup_altivec_maybe_transactional(tsk); | 228 | giveup_altivec_maybe_transactional(tsk); |
229 | __giveup_vsx(tsk); | 229 | __giveup_vsx(tsk); |
230 | } | 230 | } |
231 | EXPORT_SYMBOL(giveup_vsx); | ||
231 | 232 | ||
232 | void flush_vsx_to_thread(struct task_struct *tsk) | 233 | void flush_vsx_to_thread(struct task_struct *tsk) |
233 | { | 234 | { |
@@ -1316,6 +1317,7 @@ void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp) | |||
1316 | current->thread.tm_tfiar = 0; | 1317 | current->thread.tm_tfiar = 0; |
1317 | #endif /* CONFIG_PPC_TRANSACTIONAL_MEM */ | 1318 | #endif /* CONFIG_PPC_TRANSACTIONAL_MEM */ |
1318 | } | 1319 | } |
1320 | EXPORT_SYMBOL(start_thread); | ||
1319 | 1321 | ||
1320 | #define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \ | 1322 | #define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \ |
1321 | | PR_FP_EXC_RES | PR_FP_EXC_INV) | 1323 | | PR_FP_EXC_RES | PR_FP_EXC_INV) |