[PATCH] i386: switch_to(): misplaced parentheses

Recent changes in i386 __switch_to() have a misplaced closing
parenthesis causing an unlikely() to terminate early.

Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Chuck Ebbert and committed by Linus Torvalds facf0147 64821324

+2 -2
+2 -2
arch/i386/kernel/process.c
··· 690 690 /* 691 691 * Now maybe handle debug registers and/or IO bitmaps 692 692 */ 693 - if (unlikely((task_thread_info(next_p)->flags & _TIF_WORK_CTXSW)) 694 - || test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)) 693 + if (unlikely((task_thread_info(next_p)->flags & _TIF_WORK_CTXSW) 694 + || test_tsk_thread_flag(prev_p, TIF_IO_BITMAP))) 695 695 __switch_to_xtra(next_p, tss); 696 696 697 697 disable_tsc(prev_p, next_p);