6lowpan: debugfs: add missing static
authorAlexander Aring <aar@pengutronix.de>
Fri, 4 Mar 2016 09:10:21 +0000 (10:10 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Thu, 10 Mar 2016 18:51:29 +0000 (19:51 +0100)
This patch solves the sparse warning:

net/6lowpan/debugfs.c:164:30: warning: symbol 'lowpan_ctx_pfx_fops' was
not declared. Should it be static?
net/6lowpan/debugfs.c:241:30: warning: symbol 'lowpan_context_fops' was
not declared. Should it be static?

Signed-off-by: Alexander Aring <aar@pengutronix.de>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/6lowpan/debugfs.c

index aa49ff4ce6fda9886d10c90b45ae96fdb66f41f0..0793a815747206629debbbac5d4ac1386958b6c4 100644 (file)
@@ -161,7 +161,7 @@ out:
        return status;
 }
 
-const struct file_operations lowpan_ctx_pfx_fops = {
+static const struct file_operations lowpan_ctx_pfx_fops = {
        .open           = lowpan_ctx_pfx_open,
        .read           = seq_read,
        .write          = lowpan_ctx_pfx_write,
@@ -238,7 +238,7 @@ static int lowpan_context_open(struct inode *inode, struct file *file)
        return single_open(file, lowpan_context_show, inode->i_private);
 }
 
-const struct file_operations lowpan_context_fops = {
+static const struct file_operations lowpan_context_fops = {
        .open           = lowpan_context_open,
        .read           = seq_read,
        .llseek         = seq_lseek,