diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-10-05 01:58:39 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-07 04:10:46 -0400 |
commit | ec1b4cf74c81bfd0fbe5bf62bafc86c45917e72f (patch) | |
tree | 1b693e4e027f3e42224e6221ae018daeb562e5e1 /net/ipv4/af_inet.c | |
parent | f7734fdf61ec6bb848e0bafc1fb8bad2c124bb50 (diff) |
net: mark net_proto_ops as const
All usages of structure net_proto_ops should be declared const.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/af_inet.c')
-rw-r--r-- | net/ipv4/af_inet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c index 57737b8d1711..1deff48b122e 100644 --- a/net/ipv4/af_inet.c +++ b/net/ipv4/af_inet.c | |||
@@ -931,7 +931,7 @@ static const struct proto_ops inet_sockraw_ops = { | |||
931 | #endif | 931 | #endif |
932 | }; | 932 | }; |
933 | 933 | ||
934 | static struct net_proto_family inet_family_ops = { | 934 | static const struct net_proto_family inet_family_ops = { |
935 | .family = PF_INET, | 935 | .family = PF_INET, |
936 | .create = inet_create, | 936 | .create = inet_create, |
937 | .owner = THIS_MODULE, | 937 | .owner = THIS_MODULE, |