From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 87430A00C5 for ; Wed, 8 Dec 2021 11:12:13 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7DD58406FF; Wed, 8 Dec 2021 11:12:13 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 6FBD7406FF for ; Wed, 8 Dec 2021 11:12:11 +0100 (CET) X-IronPort-AV: E=McAfee;i="6200,9189,10191"; a="298595294" X-IronPort-AV: E=Sophos;i="5.87,297,1631602800"; d="scan'208";a="298595294" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Dec 2021 02:11:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,297,1631602800"; d="scan'208";a="462714727" Received: from silpixa00399752.ir.intel.com (HELO silpixa00399752.ger.corp.intel.com) ([10.237.222.27]) by orsmga006.jf.intel.com with ESMTP; 08 Dec 2021 02:11:57 -0800 From: Ferruh Yigit To: stable@dpdk.org Cc: Christian Ehrhardt Subject: [19.11 v2] ethdev: fix typos Date: Wed, 8 Dec 2021 10:11:56 +0000 Message-Id: <20211208101156.810406-1-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211206151025.3392236-1-ferruh.yigit@intel.com> References: <20211206151025.3392236-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org [ upstream commit 5139502783ed4e3ccaab49548812b8bdd7fb14b5 ] Fixes: 9039c8125730 ("ethdev: change promiscuous callbacks to return status") Cc: stable@dpdk.org Signed-off-by: Ferruh Yigit Acked-by: Ori Kam --- Cc: Christian Ehrhardt v2: * Add '19.11' subject prefix to the patch --- lib/librte_ethdev/rte_ethdev_core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_ethdev/rte_ethdev_core.h b/lib/librte_ethdev/rte_ethdev_core.h index 7bf97e24ed56..1106b6160a8e 100644 --- a/lib/librte_ethdev/rte_ethdev_core.h +++ b/lib/librte_ethdev/rte_ethdev_core.h @@ -71,7 +71,7 @@ typedef int (*eth_is_removed_t)(struct rte_eth_dev *dev); * @retval -E_RTE_SECONDARY * Function was called from a secondary process instance and not supported. * @retval -ETIMEDOUT - * Attempt to enable promiscuos mode failed because of timeout. + * Attempt to enable promiscuous mode failed because of timeout. * @retval -EAGAIN * Failed to enable promiscuous mode. */ @@ -96,7 +96,7 @@ typedef int (*eth_promiscuous_enable_t)(struct rte_eth_dev *dev); * @retval -E_RTE_SECONDARY * Function was called from a secondary process instance and not supported. * @retval -ETIMEDOUT - * Attempt to disable promiscuos mode failed because of timeout. + * Attempt to disable promiscuous mode failed because of timeout. * @retval -EAGAIN * Failed to disable promiscuous mode. */ -- 2.33.1