From patchwork Fri May 3 13:57:52 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Burakov, Anatoly" X-Patchwork-Id: 139849 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E2A2543F76; Fri, 3 May 2024 16:00:47 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3B6EE40EDD; Fri, 3 May 2024 15:59:03 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.15]) by mails.dpdk.org (Postfix) with ESMTP id EAC0B40E72 for ; Fri, 3 May 2024 15:59:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1714744741; x=1746280741; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=75pIUvaolgyknQu7XLD/O6YIctRlfC247VmqM/jZLQQ=; b=U9fwBEP34b5mAR63XcZsD5MnYaJiJNza1z1DY4zAZzEaWqt8q265MstQ jVor+D6Xj8qiFfbddpp6RtZXZFd52M0w2vtUJ8RaE+9RDDCrBQRxLOn41 oCUcxQ86LdLmrfiw3eJ/a7HFXuopa/i/4Qm+xM4x5cHWDMKgVmKyaW58K ioiGGZtXqqCZke2wU3l4sWAHx0ArKTFE1pT28k/BOgBiYUdXB/aDyeC0p syfTAAXM9uG35DI86boWcEPdvk+j+Ju7dyHux1qTco7sYeWox9Nlj8IJt ma9K5MyW6Tv3FJor04JQzJY5kQuMGarsp3Dtu9p5VFhzX3Gm7gxh5MOOA g==; X-CSE-ConnectionGUID: d7OG6KEjR2GwsGe1SmqHWw== X-CSE-MsgGUID: 3tqQPDIdRwyJWl1OIjMFkA== X-IronPort-AV: E=McAfee;i="6600,9927,11063"; a="10714971" X-IronPort-AV: E=Sophos;i="6.07,251,1708416000"; d="scan'208";a="10714971" Received: from fmviesa002.fm.intel.com ([10.60.135.142]) by fmvoesa109.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 May 2024 06:59:00 -0700 X-CSE-ConnectionGUID: ms0RV2GyT9qMboJbZwsjGw== X-CSE-MsgGUID: APwkie6BTsGZQ0/rM+4bqg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.07,251,1708416000"; d="scan'208";a="50642047" Received: from silpixa00401119.ir.intel.com ([10.55.129.167]) by fmviesa002.fm.intel.com with ESMTP; 03 May 2024 06:58:59 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: Chinh Cao , bruce.richardson@intel.com, vladimir.medvedkin@intel.com Subject: [PATCH v2 21/27] net/ixgbe/base: remove prototypes of unimplemented functions Date: Fri, 3 May 2024 14:57:52 +0100 Message-ID: <1c6ae96d8138df8ab20b17ca489469fdfa5941ab.1714744628.git.anatoly.burakov@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Chinh Cao There are some function prototypes that were introduced at some point but were never implemented, so remove them. Signed-off-by: Chinh Cao --- drivers/net/ixgbe/base/ixgbe_api.h | 1 - drivers/net/ixgbe/base/ixgbe_x550.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/drivers/net/ixgbe/base/ixgbe_api.h b/drivers/net/ixgbe/base/ixgbe_api.h index 33e7c3c215..51decc5fae 100644 --- a/drivers/net/ixgbe/base/ixgbe_api.h +++ b/drivers/net/ixgbe/base/ixgbe_api.h @@ -118,7 +118,6 @@ u64 ixgbe_get_supported_physical_layer(struct ixgbe_hw *hw); s32 ixgbe_enable_rx_dma(struct ixgbe_hw *hw, u32 regval); s32 ixgbe_disable_sec_rx_path(struct ixgbe_hw *hw); s32 ixgbe_enable_sec_rx_path(struct ixgbe_hw *hw); -s32 ixgbe_mng_fw_enabled(struct ixgbe_hw *hw); s32 ixgbe_reinit_fdir_tables_82599(struct ixgbe_hw *hw); s32 ixgbe_init_fdir_signature_82599(struct ixgbe_hw *hw, u32 fdirctrl); s32 ixgbe_init_fdir_perfect_82599(struct ixgbe_hw *hw, u32 fdirctrl, diff --git a/drivers/net/ixgbe/base/ixgbe_x550.h b/drivers/net/ixgbe/base/ixgbe_x550.h index cff107e2ab..3e3ca8e66a 100644 --- a/drivers/net/ixgbe/base/ixgbe_x550.h +++ b/drivers/net/ixgbe/base/ixgbe_x550.h @@ -72,9 +72,7 @@ s32 ixgbe_read_phy_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type, u16 *phy_data); s32 ixgbe_write_phy_reg_x550a(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type, u16 phy_data); -s32 ixgbe_setup_fc_fiber_x550em_a(struct ixgbe_hw *hw); s32 ixgbe_setup_fc_backplane_x550em_a(struct ixgbe_hw *hw); -s32 ixgbe_setup_fc_sgmii_x550em_a(struct ixgbe_hw *hw); void ixgbe_fc_autoneg_fiber_x550em_a(struct ixgbe_hw *hw); void ixgbe_fc_autoneg_backplane_x550em_a(struct ixgbe_hw *hw); void ixgbe_fc_autoneg_sgmii_x550em_a(struct ixgbe_hw *hw);