From d81f9f5170058ecd46971cf46d5ad17116c9e5b1 Mon Sep 17 00:00:00 2001 From: Jessica Yu Date: Mon, 28 Jul 2014 06:33:15 -0700 Subject: [PATCH] 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 Signed-off-by: Greg Kroah-Hartman --- drivers/staging/lustre/lustre/libcfs/linux/linux-module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/libcfs/linux/linux-module.c b/drivers/staging/lustre/lustre/libcfs/linux/linux-module.c index 745fe4cd784d..de3c199654a0 100644 --- a/drivers/staging/lustre/lustre/libcfs/linux/linux-module.c +++ b/drivers/staging/lustre/lustre/libcfs/linux/linux-module.c @@ -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, -- 2.34.1