From: Julia Lawall Date: Sun, 28 Aug 2016 21:38:27 +0000 (+0200) Subject: staging: lustre: constify lprocfs_generic_fops structure X-Git-Tag: v4.9-rc1~119^2~876 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a1cd3dd535cbc1ff84935b73cee1a053bf19a210;p=karo-tx-linux.git staging: lustre: constify lprocfs_generic_fops structure lprocfs_generic_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/lprocfs_status.c b/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c index 3d6da741ea47..be6b6af0c548 100644 --- a/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c +++ b/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c @@ -315,7 +315,7 @@ struct dentry *ldebugfs_add_simple(struct dentry *root, } EXPORT_SYMBOL_GPL(ldebugfs_add_simple); -static struct file_operations lprocfs_generic_fops = { }; +static const struct file_operations lprocfs_generic_fops = { }; int ldebugfs_add_vars(struct dentry *parent, struct lprocfs_vars *list,