[UNNECESSARY PATCH 10/16] signal: Remove unnecessary parentheses from function pointer call

From: Joe Perches
Date: Sun Nov 16 2014 - 15:11:51 EST


These don't add clarity so remove them.

Signed-off-by: Joe Perches <joe@xxxxxxxxxxx>
---
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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/