Commit c23dd240 authored by Tobias Klauser's avatar Tobias Klauser Committed by Guo Ren

csky: remove unusued thread_saved_pc and *_segments functions/macros

These are used nowhere in the tree (except for some architectures which
define them for their own use) and were already removed for other
architectures in:

commit 6474924e ("arch: remove unused macro/function thread_saved_pc()")
commit c17c0204 ("arch: remove unused *_segments() macros/functions")

Remove them from arch/csky as well.
Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarGuo Ren <guoren@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
parent 92ed3019
...@@ -82,12 +82,6 @@ static inline void release_thread(struct task_struct *dead_task) ...@@ -82,12 +82,6 @@ static inline void release_thread(struct task_struct *dead_task)
extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
#define copy_segments(tsk, mm) do { } while (0)
#define release_segments(mm) do { } while (0)
#define forget_segments() do { } while (0)
extern unsigned long thread_saved_pc(struct task_struct *tsk);
unsigned long get_wchan(struct task_struct *p); unsigned long get_wchan(struct task_struct *p);
#define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc) #define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
......
...@@ -30,16 +30,6 @@ asmlinkage void ret_from_kernel_thread(void); ...@@ -30,16 +30,6 @@ asmlinkage void ret_from_kernel_thread(void);
*/ */
void flush_thread(void){} void flush_thread(void){}
/*
* Return saved PC from a blocked thread
*/
unsigned long thread_saved_pc(struct task_struct *tsk)
{
struct switch_stack *sw = (struct switch_stack *)tsk->thread.sp;
return sw->r15;
}
int copy_thread_tls(unsigned long clone_flags, int copy_thread_tls(unsigned long clone_flags,
unsigned long usp, unsigned long usp,
unsigned long kthread_arg, unsigned long kthread_arg,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment