[PATCH] kernel/jump_label.c: declare jump_label_module_nb as static

From: Michele Curti
Date: Wed Oct 15 2014 - 04:30:44 EST


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@xxxxxxxxx>
---
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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/