net: Fix a comment in include/linux/netdevice.h.
authorKrzysztof Hałasa <khc@pm.waw.pl>
Tue, 13 Jan 2009 00:32:13 +0000 (16:32 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 13 Jan 2009 05:18:32 +0000 (21:18 -0800)
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>
include/linux/netdevice.h

index f245568..4647604 100644 (file)
@@ -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.