[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1413361801-17003-1-git-send-email-michele.curti@gmail.com>
Date: Wed, 15 Oct 2014 10:30:01 +0200
From: Michele Curti <michele.curti@...il.com>
To: davem@...emloft.net
Cc: linux-kernel@...r.kernel.org,
Michele Curti <michele.curti@...il.com>
Subject: [PATCH] kernel/jump_label.c: declare jump_label_module_nb as static
The structure jump_label_module_nb is used in jump_label.c only,
so declare it as static
Signed-off-by: Michele Curti <michele.curti@...il.com>
---
kernel/jump_label.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/jump_label.c b/kernel/jump_label.c
index 9019f15..d7ac148 100644
--- a/kernel/jump_label.c
+++ b/kernel/jump_label.c
@@ -399,7 +399,7 @@ jump_label_module_notify(struct notifier_block *self, unsigned long val,
return notifier_from_errno(ret);
}
-struct notifier_block jump_label_module_nb = {
+static struct notifier_block jump_label_module_nb = {
.notifier_call = jump_label_module_notify,
.priority = 1, /* higher than tracepoints */
};
--
2.1.2
Regards,
Michele
--
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