From patchwork Fri Jul 10 21:52:17 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 73784 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6E30FA052A; Fri, 10 Jul 2020 23:52:23 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 832811DC09; Fri, 10 Jul 2020 23:52:22 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id BD5551DB6C for ; Fri, 10 Jul 2020 23:52:20 +0200 (CEST) IronPort-SDR: fVoHhyZ39Mrc/mVACi5jWe1JNZDT6zmXj19pAJg8FzxVzypqSWrU97HweF8b8+v/NVQTJ4eknF aTZMrXDFI8GA== X-IronPort-AV: E=McAfee;i="6000,8403,9678"; a="147418748" X-IronPort-AV: E=Sophos;i="5.75,336,1589266800"; d="scan'208";a="147418748" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jul 2020 14:52:19 -0700 IronPort-SDR: b1LHFoui863NSkv6C9WCGqaKtoah6PCErBCsm8qqMBQXm4e57jlfOHPdonMuy7mMSvSi/STEgo BTfD9haLUIDQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,336,1589266800"; d="scan'208";a="484781108" Received: from silpixa00399752.ir.intel.com (HELO silpixa00399752.ger.corp.intel.com) ([10.237.222.180]) by fmsmga005.fm.intel.com with ESMTP; 10 Jul 2020 14:52:18 -0700 From: Ferruh Yigit To: Hemant Agrawal , Sachin Saxena Cc: dev@dpdk.org, Ferruh Yigit Date: Fri, 10 Jul 2020 22:52:17 +0100 Message-Id: <20200710215217.1409242-1-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.25.4 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v20.11] net/dpaa: fix public API port ID type 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" Signed-off-by: Ferruh Yigit --- Hi Hemant, Can you please send a deprecation notice to be able to fix in 20.11? btw, is this API still used, if it is not used should it be deprecated? --- drivers/net/dpaa/rte_pmd_dpaa.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/dpaa/rte_pmd_dpaa.h b/drivers/net/dpaa/rte_pmd_dpaa.h index 37eea9b032..07a5688291 100644 --- a/drivers/net/dpaa/rte_pmd_dpaa.h +++ b/drivers/net/dpaa/rte_pmd_dpaa.h @@ -31,6 +31,6 @@ * - (-EINVAL) if bad parameter. */ int -rte_pmd_dpaa_set_tx_loopback(uint8_t port, uint8_t on); +rte_pmd_dpaa_set_tx_loopback(uint16_t port, uint8_t on); #endif /* _PMD_DPAA_H_ */