diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-22 14:21:58 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-22 14:21:58 -0700 |
commit | 888c848ed34bd5f8cb56567624c0d951ab35174e (patch) | |
tree | b63a960b5fbdc8bebab6ed1d84212a95a19c0bc2 /net | |
parent | 4d6971e909e904be60218739fc961188471fc4f4 (diff) | |
download | op-kernel-dev-888c848ed34bd5f8cb56567624c0d951ab35174e.zip op-kernel-dev-888c848ed34bd5f8cb56567624c0d951ab35174e.tar.gz |
ipv6: make struct ipv6_devconf static
struct ipv6_devconf can now become static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/addrconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 9f4fcce..74d543d 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c @@ -153,7 +153,7 @@ static int ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr, static ATOMIC_NOTIFIER_HEAD(inet6addr_chain); -struct ipv6_devconf ipv6_devconf __read_mostly = { +static struct ipv6_devconf ipv6_devconf __read_mostly = { .forwarding = 0, .hop_limit = IPV6_DEFAULT_HOPLIMIT, .mtu6 = IPV6_MIN_MTU, |