aboutsummaryrefslogtreecommitdiffstats
path: root/arch/frv
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2012-06-02 07:08:39 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-06-02 10:38:19 -0400
commita3936249694775d8fb25d19ddf0ed6263e33dd14 (patch)
tree84ee04a863c385915ff6bf9c3d90fffe35a1c172 /arch/frv
parent86c47b70f62a7072d441ba212aab33c2f82627c2 (diff)
frv: Remove bogus closing parenthesis
Introduced by commit 6fd84c0831ec78d98736b76dc5e9b849f1dbfc9e ("TIF_RESTORE_SIGMASK can be set only when TIF_SIGPENDING is set") Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/frv')
-rw-r--r--arch/frv/kernel/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/frv/kernel/signal.c b/arch/frv/kernel/signal.c
index f3b9064c548c..864c2f0d497b 100644
--- a/arch/frv/kernel/signal.c
+++ b/arch/frv/kernel/signal.c
@@ -518,7 +518,7 @@ asmlinkage void do_notify_resume(__u32 thread_info_flags)
518 clear_thread_flag(TIF_SINGLESTEP); 518 clear_thread_flag(TIF_SINGLESTEP);
519 519
520 /* deal with pending signal delivery */ 520 /* deal with pending signal delivery */
521 if (thread_info_flags & _TIF_SIGPENDING)) 521 if (thread_info_flags & _TIF_SIGPENDING)
522 do_signal(); 522 do_signal();
523 523
524 /* deal with notification on about to resume userspace execution */ 524 /* deal with notification on about to resume userspace execution */