sh: Fix build alloc_thread_info_node function

By commit b6a84016bd2598e35ead635147fa53619982648d,
alloc_thread_info was replaced by alloc_thread_info_node.
However, the change of the function name and the addition of the argument
were incomplete.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
CC: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>

authored by Nobuhiro Iwamatsu and committed by Paul Mundt b15ed691 a3d33622

+2 -2
+2 -2
arch/sh/kernel/process.c
··· 32 #if THREAD_SHIFT < PAGE_SHIFT 33 static struct kmem_cache *thread_info_cache; 34 35 - struct thread_info *alloc_thread_info(struct task_struct *tsk, int node) 36 { 37 struct thread_info *ti; 38 #ifdef CONFIG_DEBUG_STACK_USAGE ··· 57 THREAD_SIZE, SLAB_PANIC, NULL); 58 } 59 #else 60 - struct thread_info *alloc_thread_info(struct task_struct *tsk) 61 { 62 #ifdef CONFIG_DEBUG_STACK_USAGE 63 gfp_t mask = GFP_KERNEL | __GFP_ZERO;
··· 32 #if THREAD_SHIFT < PAGE_SHIFT 33 static struct kmem_cache *thread_info_cache; 34 35 + struct thread_info *alloc_thread_info_node(struct task_struct *tsk, int node) 36 { 37 struct thread_info *ti; 38 #ifdef CONFIG_DEBUG_STACK_USAGE ··· 57 THREAD_SIZE, SLAB_PANIC, NULL); 58 } 59 #else 60 + struct thread_info *alloc_thread_info_node(struct task_struct *tsk, int node) 61 { 62 #ifdef CONFIG_DEBUG_STACK_USAGE 63 gfp_t mask = GFP_KERNEL | __GFP_ZERO;