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: Dzmitry Sledneu <dzmitry.sledneu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Dzmitry Sledneu
2015-04-18 15:20:43 +02:00
committed by Greg Kroah-Hartman
parent 840c94d574
commit 3b2f5202c5

View File

@@ -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,