Staging: lustre: linux-module: add const modifier to file_operations

Add the const modifier to the file_operations struct, since it is
normally const.

Signed-off-by: Jessica Yu <jyu@cowsay.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Jessica Yu 2014-07-28 06:33:15 -07:00 committed by Greg Kroah-Hartman
parent 18e2e99b8c
commit d81f9f5170
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ static long libcfs_ioctl(struct file *file,
return rc;
}
static struct file_operations libcfs_fops = {
static const struct file_operations libcfs_fops = {
.unlocked_ioctl = libcfs_ioctl,
.open = libcfs_psdev_open,
.release = libcfs_psdev_release,