diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2009-01-14 16:52:18 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-01-21 17:03:37 -0500 |
commit | 4101dec9ca64d40f0d673f0a40ba46ba2c60e117 (patch) | |
tree | b730cbe021559ef06a2df16344be91457ee1b684 /drivers/net/bonding/bond_main.c | |
parent | 991990a12de42281f81b4e3a6471586d2d0caf6a (diff) |
net: constify VFTs
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_main.c')
-rw-r--r-- | drivers/net/bonding/bond_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 9fb388388fb7..21bce2c0fde2 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
@@ -3369,7 +3369,7 @@ static int bond_info_seq_show(struct seq_file *seq, void *v) | |||
3369 | return 0; | 3369 | return 0; |
3370 | } | 3370 | } |
3371 | 3371 | ||
3372 | static struct seq_operations bond_info_seq_ops = { | 3372 | static const struct seq_operations bond_info_seq_ops = { |
3373 | .start = bond_info_seq_start, | 3373 | .start = bond_info_seq_start, |
3374 | .next = bond_info_seq_next, | 3374 | .next = bond_info_seq_next, |
3375 | .stop = bond_info_seq_stop, | 3375 | .stop = bond_info_seq_stop, |