aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorB Viswanath <marichika4@gmail.com>2015-01-12 14:46:25 +0530
committerDavid S. Miller <davem@davemloft.net>2015-01-13 14:03:42 -0500
commit5d632cb70f454ac11158de40d563b08b0cd6e084 (patch)
tree635c8af353293a9f810bff22121ac60edb8676db
parent49c9e7c21af4743f8413cfdce78b551b9d5caad9 (diff)
downloadchromiumos-intel-5d632cb70f454ac11158de40d563b08b0cd6e084.tar.gz
net: Corrected the comment describing the ndo operations to reflect the actual prototype for couple of operations
Corrected the comment describing the ndo operations to reflect the actual prototype for couple of operations Signed-off-by: B Viswanath <marichika4@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/linux/netdevice.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 679e6e90aa4c2..7f794db8e4867 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -852,11 +852,11 @@ typedef u16 (*select_queue_fallback_t)(struct net_device *dev,
* 3. Update dev->stats asynchronously and atomically, and define
* neither operation.
*
- * int (*ndo_vlan_rx_add_vid)(struct net_device *dev, __be16 proto, u16t vid);
+ * int (*ndo_vlan_rx_add_vid)(struct net_device *dev, __be16 proto, u16 vid);
* If device support VLAN filtering this function is called when a
* VLAN id is registered.
*
- * int (*ndo_vlan_rx_kill_vid)(struct net_device *dev, unsigned short vid);
+ * int (*ndo_vlan_rx_kill_vid)(struct net_device *dev, __be16 proto, u16 vid);
* If device support VLAN filtering this function is called when a
* VLAN id is unregistered.
*