Merge tag 'for-linus' of git://linux-c6x.org/git/projects/linux-c6x-upstreaming

Pull C6X fix from Mark Salter:
"Fix for C6X KSTK_EIP and KSTK_ESP macros."

* tag 'for-linus' of git://linux-c6x.org/git/projects/linux-c6x-upstreaming:
C6X: fix KSTK_EIP and KSTK_ESP macros

+2 -2
+2 -2
arch/c6x/include/asm/processor.h
··· 122 122 123 123 extern unsigned long get_wchan(struct task_struct *p); 124 124 125 - #define KSTK_EIP(tsk) (task_pt_regs(task)->pc) 126 - #define KSTK_ESP(tsk) (task_pt_regs(task)->sp) 125 + #define KSTK_EIP(task) (task_pt_regs(task)->pc) 126 + #define KSTK_ESP(task) (task_pt_regs(task)->sp) 127 127 128 128 #define cpu_relax() do { } while (0) 129 129