diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-09-28 17:08:02 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-29 19:45:35 -0700 |
commit | a64de47c091e4a337fa9763315cb6f2fbf0c583b (patch) | |
tree | e545dbaede640218956daf1bdd5d503986318861 /net/ipv4/arp.c | |
parent | bfa5ae63b823f4ffd3483a05f60a93a4a7b7d680 (diff) | |
download | linux-a64de47c091e4a337fa9763315cb6f2fbf0c583b.tar.bz2 |
arp: remove unnecessary export of arp_broken_ops
arp_broken_ops is only used in arp.c
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/arp.c')
-rw-r--r-- | net/ipv4/arp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c index 4083c186fd30..d9031ad67826 100644 --- a/net/ipv4/arp.c +++ b/net/ipv4/arp.c @@ -161,7 +161,7 @@ static const struct neigh_ops arp_direct_ops = { .queue_xmit = dev_queue_xmit, }; -const struct neigh_ops arp_broken_ops = { +static const struct neigh_ops arp_broken_ops = { .family = AF_INET, .solicit = arp_solicit, .error_report = arp_error_report, @@ -170,7 +170,6 @@ const struct neigh_ops arp_broken_ops = { .hh_output = dev_queue_xmit, .queue_xmit = dev_queue_xmit, }; -EXPORT_SYMBOL(arp_broken_ops); struct neigh_table arp_tbl = { .family = AF_INET, |