]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging/lustre/obdclass: use static const for seq_operations
authorFabian Frederick <fabf@skynet.be>
Mon, 30 Jun 2014 18:31:26 +0000 (20:31 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 8 Jul 2014 23:48:03 +0000 (16:48 -0700)
lprocfs_stats_seq_sops is only used in static int lprocfs_stats_seq_open
with seq_open as const struct seq_operations *

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Peng Tao <bergwolf@gmail.com>
Cc: devel@driverdev.osuosl.org
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/obdclass/lprocfs_status.c

index 1432dd74fe95099504426d035b7d9b421e3a3fc6..b0a12c4a24b8b7c7ebaa849ea4e61e77f503cf1d 100644 (file)
@@ -1196,7 +1196,7 @@ out:
        return (rc < 0) ? rc : 0;
 }
 
-struct seq_operations lprocfs_stats_seq_sops = {
+static const struct seq_operations lprocfs_stats_seq_sops = {
        .start  = lprocfs_stats_seq_start,
        .stop   = lprocfs_stats_seq_stop,
        .next   = lprocfs_stats_seq_next,