From: Julia Lawall Date: Sun, 28 Aug 2016 21:45:11 +0000 (+0200) Subject: staging: lustre: obdclass: constify obd_psdev_fops structure X-Git-Tag: v4.9-rc1~119^2~877 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=495ea0d99355e550a120b706515d6be55d198ac2;p=karo-tx-linux.git staging: lustre: obdclass: constify obd_psdev_fops structure obd_psdev_fops, of type struct file_operations, is never modified, so declare it as const. Done with the help of Coccinelle. Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c b/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c index 27a72d899770..2b691d8cdf96 100644 --- a/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c +++ b/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c @@ -192,7 +192,7 @@ static long obd_class_ioctl(struct file *filp, unsigned int cmd, } /* declare character device */ -static struct file_operations obd_psdev_fops = { +static const struct file_operations obd_psdev_fops = { .owner = THIS_MODULE, .unlocked_ioctl = obd_class_ioctl, /* unlocked_ioctl */ .open = obd_class_open, /* open */