diff options
author | David S. Miller <davem@davemloft.net> | 2011-07-16 17:39:57 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-16 17:39:57 -0700 |
commit | 47ec132a40d788d45e2f088545dea68798034dab (patch) | |
tree | f3089b58b4ef12cca150bdd4bf213d8a627a0035 /net/decnet | |
parent | 0895b08adeb3f660cdff21990d0a9c2b59a919e7 (diff) | |
download | linux-3.10-47ec132a40d788d45e2f088545dea68798034dab.tar.gz linux-3.10-47ec132a40d788d45e2f088545dea68798034dab.tar.bz2 linux-3.10-47ec132a40d788d45e2f088545dea68798034dab.zip |
neigh: Kill neigh_ops->hh_output
It's always dev_queue_xmit().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/decnet')
-rw-r--r-- | net/decnet/dn_neigh.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/decnet/dn_neigh.c b/net/decnet/dn_neigh.c index 03eb2261180..abf4de851c6 100644 --- a/net/decnet/dn_neigh.c +++ b/net/decnet/dn_neigh.c @@ -64,7 +64,6 @@ static const struct neigh_ops dn_long_ops = { .error_report = dn_long_error_report, .output = dn_long_output, .connected_output = dn_long_output, - .hh_output = dev_queue_xmit, .queue_xmit = dev_queue_xmit, }; @@ -76,7 +75,6 @@ static const struct neigh_ops dn_short_ops = { .error_report = dn_short_error_report, .output = dn_short_output, .connected_output = dn_short_output, - .hh_output = dev_queue_xmit, .queue_xmit = dev_queue_xmit, }; @@ -88,7 +86,6 @@ static const struct neigh_ops dn_phase3_ops = { .error_report = dn_short_error_report, /* Can use short version here */ .output = dn_phase3_output, .connected_output = dn_phase3_output, - .hh_output = dev_queue_xmit, .queue_xmit = dev_queue_xmit }; |