summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKrzysztof Hałasa2009-01-13 01:32:13 +0100
committerDavid S. Miller2009-01-13 06:18:32 +0100
commit985ebdb5ed54151eba734aa1b307460e8e4267ba (patch)
tree06ac06ae1af29aa880ed96de3be71ac1f01dded3 /include
parentWAN: Fix NAPI interface in IXP4xx HSS driver. (diff)
downloadkernel-qcow2-linux-985ebdb5ed54151eba734aa1b307460e8e4267ba.tar.gz
kernel-qcow2-linux-985ebdb5ed54151eba734aa1b307460e8e4267ba.tar.xz
kernel-qcow2-linux-985ebdb5ed54151eba734aa1b307460e8e4267ba.zip
net: Fix a comment in include/linux/netdevice.h.
Fix a comment in include/linux/netdevice.h. Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/netdevice.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index f24556813375..4647604c7ca9 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -467,7 +467,7 @@ struct netdev_queue {
* This function is called when network device transistions to the down
* state.
*
- * int (*ndo_hard_start_xmit)(struct sk_buff *skb, struct net_device *dev);
+ * int (*ndo_start_xmit)(struct sk_buff *skb, struct net_device *dev);
* Called when a packet needs to be transmitted.
* Must return NETDEV_TX_OK , NETDEV_TX_BUSY, or NETDEV_TX_LOCKED,
* Required can not be NULL.