diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-09-01 19:25:02 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-02 01:03:39 -0700 |
commit | 98147d527a038c4aab599e57323a4e5d727c28a6 (patch) | |
tree | 0a9b012258f5f05d1308adc282741d32aa0958f0 /net/key | |
parent | 0fc0b732eaa38beb93a6fb62f77c7bd9622c76ec (diff) | |
download | linux-98147d527a038c4aab599e57323a4e5d727c28a6.tar.gz linux-98147d527a038c4aab599e57323a4e5d727c28a6.tar.bz2 linux-98147d527a038c4aab599e57323a4e5d727c28a6.zip |
net: seq_operations should be const
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/key')
-rw-r--r-- | net/key/af_key.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/key/af_key.c b/net/key/af_key.c index dba9abd27f90..7b1e99b5b4d2 100644 --- a/net/key/af_key.c +++ b/net/key/af_key.c @@ -3705,7 +3705,7 @@ static void pfkey_seq_stop(struct seq_file *f, void *v) read_unlock(&pfkey_table_lock); } -static struct seq_operations pfkey_seq_ops = { +static const struct seq_operations pfkey_seq_ops = { .start = pfkey_seq_start, .next = pfkey_seq_next, .stop = pfkey_seq_stop, |