Commit 7401055b authored by David S. Miller's avatar David S. Miller

[IPV6]: Fix __ipv6_addr_type() export in correct place.

It needs to be in net/ipv6/addrconf_core.c
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8030f544
...@@ -72,4 +72,5 @@ int __ipv6_addr_type(const struct in6_addr *addr) ...@@ -72,4 +72,5 @@ int __ipv6_addr_type(const struct in6_addr *addr)
return (IPV6_ADDR_RESERVED | return (IPV6_ADDR_RESERVED |
IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL)); /* addr-select 3.4 */ IPV6_ADDR_SCOPE_TYPE(IPV6_ADDR_SCOPE_GLOBAL)); /* addr-select 3.4 */
} }
EXPORT_SYMBOL(__ipv6_addr_type);
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
#include <net/ip6_route.h> #include <net/ip6_route.h>
#include <net/xfrm.h> #include <net/xfrm.h>
EXPORT_SYMBOL(__ipv6_addr_type);
EXPORT_SYMBOL(icmpv6_send); EXPORT_SYMBOL(icmpv6_send);
EXPORT_SYMBOL(icmpv6_statistics); EXPORT_SYMBOL(icmpv6_statistics);
EXPORT_SYMBOL(icmpv6_err_convert); EXPORT_SYMBOL(icmpv6_err_convert);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment