浏览代码

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>
B Viswanath 10 年之前
父节点
当前提交
5d632cb70f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      include/linux/netdevice.h

+ 2 - 2
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
  *	3. Update dev->stats asynchronously and atomically, and define
  *	   neither operation.
  *	   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
  *	If device support VLAN filtering this function is called when a
  *	VLAN id is registered.
  *	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
  *	If device support VLAN filtering this function is called when a
  *	VLAN id is unregistered.
  *	VLAN id is unregistered.
  *
  *