[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <ddbdb64be33df9792096342bbf76f9d0c9b0a688.1416167046.git.joe@perches.com>
Date: Sun, 16 Nov 2014 12:09:17 -0800
From: Joe Perches <joe@...ches.com>
To: Ionut Alexa <ionut.m.alexa@...il.com>, linux-kernel@...r.kernel.org
Cc: Al Viro <viro@...IV.linux.org.uk>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [UNNECESSARY PATCH 10/16] signal: Remove unnecessary parentheses from function pointer call
These don't add clarity so remove them.
Signed-off-by: Joe Perches <joe@...ches.com>
---
kernel/signal.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/signal.c b/kernel/signal.c
index 74bd4dd..d782fa0 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -592,7 +592,7 @@ static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
if (sig) {
if (current->notifier) {
if (sigismember(current->notifier_mask, sig)) {
- if (!(current->notifier)(current->notifier_data)) {
+ if (!current->notifier(current->notifier_data)) {
clear_thread_flag(TIF_SIGPENDING);
return 0;
}
--
2.1.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists