aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-07-16 20:39:57 -0400
committerDavid S. Miller <davem@davemloft.net>2011-07-16 20:39:57 -0400
commit47ec132a40d788d45e2f088545dea68798034dab (patch)
treef3089b58b4ef12cca150bdd4bf213d8a627a0035 /include/net
parent0895b08adeb3f660cdff21990d0a9c2b59a919e7 (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 'include/net')
-rw-r--r--include/net/neighbour.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/neighbour.h b/include/net/neighbour.h
index 337da241a80f..97990ddca66c 100644
--- a/include/net/neighbour.h
+++ b/include/net/neighbour.h
@@ -122,7 +122,6 @@ struct neigh_ops {
122 void (*error_report)(struct neighbour *, struct sk_buff*); 122 void (*error_report)(struct neighbour *, struct sk_buff*);
123 int (*output)(struct sk_buff*); 123 int (*output)(struct sk_buff*);
124 int (*connected_output)(struct sk_buff*); 124 int (*connected_output)(struct sk_buff*);
125 int (*hh_output)(struct sk_buff*);
126 int (*queue_xmit)(struct sk_buff*); 125 int (*queue_xmit)(struct sk_buff*);
127}; 126};
128 127