Commit a64de47c authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller

arp: remove unnecessary export of arp_broken_ops

arp_broken_ops is only used in arp.c
Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bfa5ae63
...@@ -26,6 +26,4 @@ extern struct sk_buff *arp_create(int type, int ptype, __be32 dest_ip, ...@@ -26,6 +26,4 @@ extern struct sk_buff *arp_create(int type, int ptype, __be32 dest_ip,
const unsigned char *target_hw); const unsigned char *target_hw);
extern void arp_xmit(struct sk_buff *skb); extern void arp_xmit(struct sk_buff *skb);
extern const struct neigh_ops arp_broken_ops;
#endif /* _ARP_H */ #endif /* _ARP_H */
...@@ -161,7 +161,7 @@ static const struct neigh_ops arp_direct_ops = { ...@@ -161,7 +161,7 @@ static const struct neigh_ops arp_direct_ops = {
.queue_xmit = dev_queue_xmit, .queue_xmit = dev_queue_xmit,
}; };
const struct neigh_ops arp_broken_ops = { static const struct neigh_ops arp_broken_ops = {
.family = AF_INET, .family = AF_INET,
.solicit = arp_solicit, .solicit = arp_solicit,
.error_report = arp_error_report, .error_report = arp_error_report,
...@@ -170,7 +170,6 @@ const struct neigh_ops arp_broken_ops = { ...@@ -170,7 +170,6 @@ const struct neigh_ops arp_broken_ops = {
.hh_output = dev_queue_xmit, .hh_output = dev_queue_xmit,
.queue_xmit = dev_queue_xmit, .queue_xmit = dev_queue_xmit,
}; };
EXPORT_SYMBOL(arp_broken_ops);
struct neigh_table arp_tbl = { struct neigh_table arp_tbl = {
.family = AF_INET, .family = AF_INET,
......
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