Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,