Messages in this thread Patch in this message |  | | From | Anjali Menon <> | | Subject | [PATCH] staging: lustre: lustre: llite: Added const | | Date | Sat, 3 Oct 2015 21:13:36 +0530 |
| |
Added const to the struct statement which fixed the coding style warning detected by chekpatch.pl
WARNING: struct seq_operations should normally be const
Signed-off-by: Anjali Menon <cse.anjalimenon@gmail.com> --- drivers/staging/lustre/lustre/llite/vvp_dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/lustre/lustre/llite/vvp_dev.c b/drivers/staging/lustre/lustre/llite/vvp_dev.c index fde41d7..742be5a 100644 --- a/drivers/staging/lustre/lustre/llite/vvp_dev.c +++ b/drivers/staging/lustre/lustre/llite/vvp_dev.c @@ -517,7 +517,7 @@ static void vvp_pgcache_stop(struct seq_file *f, void *v) /* Nothing to do */ } -static struct seq_operations vvp_pgcache_ops = { +static const struct seq_operations vvp_pgcache_ops = { .start = vvp_pgcache_start, .next = vvp_pgcache_next, .stop = vvp_pgcache_stop, -- 1.9.1
|  |