From patchwork Fri Jan 27 12:27:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 20020 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id CF9312B9B; Fri, 27 Jan 2017 13:27:52 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id BC8F3B6D for ; Fri, 27 Jan 2017 13:27:25 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 27 Jan 2017 04:27:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.33,295,1477983600"; d="scan'208"; a="1087938786" Received: from sivswdev02.ir.intel.com ([10.237.217.46]) by orsmga001.jf.intel.com with ESMTP; 27 Jan 2017 04:27:23 -0800 From: Ferruh Yigit To: John McNamara , Helin Zhang ; Konstantin Ananyev , Jingjing Wu ; Helin Zhang Cc: dev@dpdk.org, Ferruh Yigit Date: Fri, 27 Jan 2017 12:27:19 +0000 Message-Id: <20170127122720.13768-2-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.8.4 Subject: [dpdk-dev] [PATCH] net/i40e: fix API comments for doxygen X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- drivers/net/i40e/rte_pmd_i40e.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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. *