Commit 4600d03f authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

greybus: es1: struct file_operations needs to be const

We aren't changing these pointers, so mark them read-only as that is the
preferred way.
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 26164edb
......@@ -540,7 +540,7 @@ static ssize_t apb1_log_read(struct file *f, char __user *buf,
return ret;
}
static struct file_operations apb1_log_fops = {
static const struct file_operations apb1_log_fops = {
.read = apb1_log_read,
};
......@@ -599,7 +599,7 @@ static ssize_t apb1_log_enable_write(struct file *f, const char __user *buf,
return retval;
}
static struct file_operations apb1_log_enable_fops = {
static const struct file_operations apb1_log_enable_fops = {
.read = apb1_log_enable_read,
.write = apb1_log_enable_write,
};
......
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