Commit 3ec75330 authored by Adrian Bunk's avatar Adrian Bunk Committed by Sam Ravnborg

kallsyms: kallsyms.c - make some code static

This patch makes some needlessly global code static.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 018330a6
......@@ -342,7 +342,7 @@ static int s_show(struct seq_file *m, void *p)
return 0;
}
struct seq_operations kallsyms_op = {
static struct seq_operations kallsyms_op = {
.start = s_start,
.next = s_next,
.stop = s_stop,
......@@ -384,7 +384,7 @@ static struct file_operations kallsyms_operations = {
.release = kallsyms_release,
};
int __init kallsyms_init(void)
static int __init kallsyms_init(void)
{
struct proc_dir_entry *entry;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment