diff options
author | David S. Miller <davem@davemloft.net> | 2011-07-16 20:39:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-16 20:39:57 -0400 |
commit | 47ec132a40d788d45e2f088545dea68798034dab (patch) | |
tree | f3089b58b4ef12cca150bdd4bf213d8a627a0035 /net/decnet | |
parent | 0895b08adeb3f660cdff21990d0a9c2b59a919e7 (diff) |
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 03eb22611801..abf4de851c63 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 = { | |||
64 | .error_report = dn_long_error_report, | 64 | .error_report = dn_long_error_report, |
65 | .output = dn_long_output, | 65 | .output = dn_long_output, |
66 | .connected_output = dn_long_output, | 66 | .connected_output = dn_long_output, |
67 | .hh_output = dev_queue_xmit, | ||
68 | .queue_xmit = dev_queue_xmit, | 67 | .queue_xmit = dev_queue_xmit, |
69 | }; | 68 | }; |
70 | 69 | ||
@@ -76,7 +75,6 @@ static const struct neigh_ops dn_short_ops = { | |||
76 | .error_report = dn_short_error_report, | 75 | .error_report = dn_short_error_report, |
77 | .output = dn_short_output, | 76 | .output = dn_short_output, |
78 | .connected_output = dn_short_output, | 77 | .connected_output = dn_short_output, |
79 | .hh_output = dev_queue_xmit, | ||
80 | .queue_xmit = dev_queue_xmit, | 78 | .queue_xmit = dev_queue_xmit, |
81 | }; | 79 | }; |
82 | 80 | ||
@@ -88,7 +86,6 @@ static const struct neigh_ops dn_phase3_ops = { | |||
88 | .error_report = dn_short_error_report, /* Can use short version here */ | 86 | .error_report = dn_short_error_report, /* Can use short version here */ |
89 | .output = dn_phase3_output, | 87 | .output = dn_phase3_output, |
90 | .connected_output = dn_phase3_output, | 88 | .connected_output = dn_phase3_output, |
91 | .hh_output = dev_queue_xmit, | ||
92 | .queue_xmit = dev_queue_xmit | 89 | .queue_xmit = dev_queue_xmit |
93 | }; | 90 | }; |
94 | 91 | ||