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 CADE74404F; Wed, 12 Jun 2024 17:11:24 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 288E7427DC; Wed, 12 Jun 2024 17:04:29 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10]) by mails.dpdk.org (Postfix) with ESMTP id 9320940E39 for ; Wed, 12 Jun 2024 17:04:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1718204663; x=1749740663; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ejW1xvv7UUxD4ZMHs6b5VBomjQRdN/XRi95vKUNEdbU=; b=d9KIg9rb3VEYgWJ55vAUmwsDIZGWMgP5DfNh5UFV7/FSyBgu+QQUUdae 6pdawMRlC6B2DPZBia1dzMO+CqKRvXrTeqz0rzftNiYNDH5QwHcrg1lpQ XgbAvXhUGZfGvFIMtrrINCjBgeOVs0Ro1iTr2VizLiUIRDHW7unpkZ4BR QiKgmDhQy86MR+43PGnes/JwbWMWfPo6ynugFnJxwV6aZhyCtFb0LZr9+ 4TQx7T5e8jzjKuqT1eY1+SNvE1KY/hCD0EXEta+QMSM9xTh4jVqovAjRm AQbpz+q02sL/lsCJwb3A3BhplhEJ2ghBzfUPGFh63Zxu0Ov4SMfw5RmX/ A==; X-CSE-ConnectionGUID: PsndKJKkSSyahEaFdMUX5A== X-CSE-MsgGUID: a//FoeTnTLmOFpFp3I8Ngg== X-IronPort-AV: E=McAfee;i="6700,10204,11101"; a="32459378" X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="32459378" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by orvoesa102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jun 2024 08:04:21 -0700 X-CSE-ConnectionGUID: nfE1nrcdQ5aA0NuTIh73sg== X-CSE-MsgGUID: BJlvkevXQdWtU7+SaVYx1w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="39925125" Received: from silpixa00401119.ir.intel.com ([10.55.129.167]) by orviesa009.jf.intel.com with ESMTP; 12 Jun 2024 08:04:20 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: Ian Stokes , bruce.richardson@intel.com, Karol Kolacinski Subject: [PATCH v2 039/148] net/ice/base: remove PTP aqc_driver_params Date: Wed, 12 Jun 2024 16:00:33 +0100 Message-ID: X-Mailer: git-send-email 2.43.0 In-Reply-To: References: <20240430154014.1026-1-ian.stokes@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: Ian Stokes With the introduction of PTP auxiliary bus driver, aqc_driver_params are no longer needed to share data between the PFs. Signed-off-by: Karol Kolacinski Signed-off-by: Ian Stokes --- drivers/net/ice/base/ice_adminq_cmd.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/drivers/net/ice/base/ice_adminq_cmd.h b/drivers/net/ice/base/ice_adminq_cmd.h index 3b917e9d7d..82f5e8bd76 100644 --- a/drivers/net/ice/base/ice_adminq_cmd.h +++ b/drivers/net/ice/base/ice_adminq_cmd.h @@ -2887,11 +2887,6 @@ struct ice_aqc_driver_shared_params { }; enum ice_aqc_driver_params { - /* OS clock index for PTP timer Domain 0 */ - ICE_AQC_DRIVER_PARAM_CLK_IDX_TMR0 = 0, - /* OS clock index for PTP timer Domain 1 */ - ICE_AQC_DRIVER_PARAM_CLK_IDX_TMR1, - /* Add new parameters above */ ICE_AQC_DRIVER_PARAM_MAX = 16, }; -- 2.43.0