From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id D34ADA10DA for ; Thu, 1 Aug 2019 17:12:23 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6F8BD1C1D8; Thu, 1 Aug 2019 17:12:23 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 826E71C1D8; Thu, 1 Aug 2019 17:12:21 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Aug 2019 08:12:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,334,1559545200"; d="scan'208";a="348114122" Received: from yexl-server.sh.intel.com ([10.67.117.5]) by orsmga005.jf.intel.com with ESMTP; 01 Aug 2019 08:12:18 -0700 From: Xiaolong Ye To: Ferruh Yigit , Qiming Yang , Wenzhuo Lu Cc: dev@dpdk.org, Xiaolong Ye , stable@dpdk.org Date: Thu, 1 Aug 2019 23:12:01 +0800 Message-Id: <20190801151201.25230-1-xiaolong.ye@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-stable] [PATCH] net/ice: remove wrong tag for dev parameter X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 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 Sender: "stable" Given the fact that dev parameter is used in ice_dev_configure. Fixes: 50370662b727 ("net/ice: support device and queue ops") Cc: stable@dpdk.org Cc: wenzhuo.lu@intel.com Signed-off-by: Xiaolong Ye --- drivers/net/ice/ice_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c index 8c60a988a..44a14cb8a 100644 --- a/drivers/net/ice/ice_ethdev.c +++ b/drivers/net/ice/ice_ethdev.c @@ -1709,7 +1709,7 @@ ice_dev_uninit(struct rte_eth_dev *dev) } static int -ice_dev_configure(__rte_unused struct rte_eth_dev *dev) +ice_dev_configure(struct rte_eth_dev *dev) { struct ice_adapter *ad = ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private); -- 2.17.1