aboutsummaryrefslogtreecommitdiffstats
path: root/arch/tile/kernel/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/tile/kernel/process.c')
-rw-r--r--arch/tile/kernel/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/tile/kernel/process.c b/arch/tile/kernel/process.c
index b5f30d376ce1..6b705ccc9cc1 100644
--- a/arch/tile/kernel/process.c
+++ b/arch/tile/kernel/process.c
@@ -541,7 +541,7 @@ void flush_thread(void)
541/* 541/*
542 * Free current thread data structures etc.. 542 * Free current thread data structures etc..
543 */ 543 */
544void exit_thread(void) 544void exit_thread(struct task_struct *tsk)
545{ 545{
546#ifdef CONFIG_HARDWALL 546#ifdef CONFIG_HARDWALL
547 /* 547 /*
@@ -550,7 +550,7 @@ void exit_thread(void)
550 * the last reference to a hardwall fd, it would already have 550 * the last reference to a hardwall fd, it would already have
551 * been released and deactivated at this point.) 551 * been released and deactivated at this point.)
552 */ 552 */
553 hardwall_deactivate_all(current); 553 hardwall_deactivate_all(tsk);
554#endif 554#endif
555} 555}
556 556