OSDN Git Service

rx wire up v5.16
authorYoshinori Sato <yo-satoh@sios.com>
Fri, 28 Jan 2022 12:05:06 +0000 (21:05 +0900)
committerYoshinori Sato <yo-satoh@sios.com>
Sat, 29 Jan 2022 07:42:48 +0000 (16:42 +0900)
Signed-off-by: Yoshinori Sato <yo-satoh@sios.com>
arch/rx/include/asm/processor.h
arch/rx/kernel/process.c

index 133d75e..17497d3 100644 (file)
@@ -81,7 +81,7 @@ static inline void prepare_to_copy(struct task_struct *tsk)
  */
 #define thread_saved_pc(tsk)   (tsk->thread.pc)
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 void show_trace(struct task_struct *tsk, unsigned long *sp,
                struct pt_regs *regs);
 #define        KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
index 9e52401..ee8c5ed 100644 (file)
@@ -114,7 +114,7 @@ int copy_thread(unsigned long clone_flags,
        return 0;
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
        int count = 0;
        unsigned long pc;