[dpdk-dev] net/i40e: fix API comments for doxygen

Message ID 20170127122720.13768-2-ferruh.yigit@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel compilation success Compilation OK

Commit Message

Ferruh Yigit Jan. 27, 2017, 12:27 p.m. UTC
  Fixes: a541407fe4bc ("net/i40e: set VF MAC anti-spoofing from PF")
Fixes: 4cbc41efcbb2 ("net/i40e: set VF VLAN anti-spoofing from PF")
Fixes: c0ec14757c5f ("net/i40e: set VF unicast promiscuous mode from PF")
Fixes: ae57070ca8b7 ("net/i40e: set VF multicast promiscuous mode from PF")
Fixes: 83bb95e3fefc ("net/i40e: set VF VLAN insertion from PF")
Fixes: 61fff9b4c68b ("net/i40e: set VF broadcast mode from PF")
Fixes: c33abbc1440e ("net/i40e: set VF VLAN tag from PF")

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 drivers/net/i40e/rte_pmd_i40e.h | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
  

Comments

Ferruh Yigit Jan. 27, 2017, 1:57 p.m. UTC | #1
On 1/27/2017 12:27 PM, Ferruh Yigit wrote:
> Fixes: a541407fe4bc ("net/i40e: set VF MAC anti-spoofing from PF")
> Fixes: 4cbc41efcbb2 ("net/i40e: set VF VLAN anti-spoofing from PF")
> Fixes: c0ec14757c5f ("net/i40e: set VF unicast promiscuous mode from PF")
> Fixes: ae57070ca8b7 ("net/i40e: set VF multicast promiscuous mode from PF")
> Fixes: 83bb95e3fefc ("net/i40e: set VF VLAN insertion from PF")
> Fixes: 61fff9b4c68b ("net/i40e: set VF broadcast mode from PF")
> Fixes: c33abbc1440e ("net/i40e: set VF VLAN tag from PF")
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied to dpdk-next-net/master, thanks.
  

Patch

diff --git a/drivers/net/i40e/rte_pmd_i40e.h b/drivers/net/i40e/rte_pmd_i40e.h
index f4bd0fd..a0ad88c 100644
--- a/drivers/net/i40e/rte_pmd_i40e.h
+++ b/drivers/net/i40e/rte_pmd_i40e.h
@@ -84,7 +84,7 @@  int rte_pmd_i40e_ping_vfs(uint8_t port, uint16_t vf);
  *
  * @param port
  *    The port identifier of the Ethernet device.
- * @param vf
+ * @param vf_id
  *    VF on which to set MAC anti spoofing.
  * @param on
  *    1 - Enable VFs MAC anti spoofing.
@@ -103,7 +103,7 @@  int rte_pmd_i40e_set_vf_mac_anti_spoof(uint8_t port,
  *
  * @param port
  *    The port identifier of the Ethernet device.
- * @param vf
+ * @param vf_id
  *    VF on which to set VLAN anti spoofing.
  * @param on
  *    1 - Enable VFs VLAN anti spoofing.
@@ -138,7 +138,7 @@  int rte_pmd_i40e_set_tx_loopback(uint8_t port,
  *
  * @param port
  *    The port identifier of the Ethernet device.
- * @param vf
+ * @param vf_id
  *    VF on which to set.
  * @param on
  *    1 - Enable.
@@ -157,7 +157,7 @@  int rte_pmd_i40e_set_vf_unicast_promisc(uint8_t port,
  *
  * @param port
  *    The port identifier of the Ethernet device.
- * @param vf
+ * @param vf_id
  *    VF on which to set.
  * @param on
  *    1 - Enable.
@@ -218,7 +218,7 @@  rte_pmd_i40e_set_vf_vlan_stripq(uint8_t port, uint16_t vf, uint8_t on);
  *
  * @param port
  *    The port identifier of the Ethernet device.
- * @param vf
+ * @param vf_id
  *    ID specifying VF.
  * @param vlan_id
  *    0 - Disable VF's vlan insert.
@@ -237,7 +237,7 @@  int rte_pmd_i40e_set_vf_vlan_insert(uint8_t port, uint16_t vf_id,
  *
  * @param port
  *    The port identifier of the Ethernet device.
- * @param vf
+ * @param vf_id
  *    ID specifying VF.
  * @param on
  *    0 - Disable broadcast.
@@ -256,9 +256,9 @@  int rte_pmd_i40e_set_vf_broadcast(uint8_t port, uint16_t vf_id,
  *
  * @param port
  *    The port identifier of the Ethernet device.
- * @param vf
+ * @param vf_id
  *    ID specifying VF.
- * @param vlan_id
+ * @param on
  *    0 - Disable VF's vlan tag.
  *    n - Enable VF's vlan tag.
  *