Commit 3b2f5202 authored by Dzmitry Sledneu's avatar Dzmitry Sledneu Committed by Greg Kroah-Hartman

staging: lustre: Make struct mdc_kuc_fops static

This patch fixes the following Sparse warning:
"symbol 'mdc_kuc_fops' was not declared. Should it be static?".
Signed-off-by: default avatarDzmitry Sledneu <dzmitry.sledneu@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 840c94d5
......@@ -147,7 +147,7 @@ static ssize_t mdc_kuc_write(struct file *file,
return count;
}
struct file_operations mdc_kuc_fops = {
static struct file_operations mdc_kuc_fops = {
.open = mdc_kuc_open,
.write = mdc_kuc_write,
.release = single_release,
......
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