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 C1BD0454EF; Tue, 25 Jun 2024 13:19:31 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 85BDB42ED4; Tue, 25 Jun 2024 13:16:35 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.19]) by mails.dpdk.org (Postfix) with ESMTP id 697D2402C4 for ; Tue, 25 Jun 2024 13:15:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1719314154; x=1750850154; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Ws+lmvouyCDzjcZjW5Q5zuicEJRTS/Hh0mwMIk2lBKw=; b=R8lwlVBUi4+KVeAzNpELY9ILDd26rAfh3bSvFxhEujJI/NkhfJvETP1J yNgjFWtvDsf4fkILpXpOdYqBI9FrLiU3wZrY58rzwQbfM8y6Mrey0DGqI /9hbnWkPAZE0ocGifeu5AzPppvR0zSPnywZbI8wlElQPZcwFwVKsEKDb+ L24FhtC8SD9PKE5rCsfnNv9v2baU8EPeKgHxve4B5wzgeQoEnNLWQqorz hkBDz0KhuHgpP6+zBXoKhNGvGj/M4qd2Ud2Q8PgQ0JCJMdYw84uhaoxGS vUnwtaKfGDyWylb1QavboU10GZcoOMujzX47IvdgXOwk3C98Ifp37VnX3 A==; X-CSE-ConnectionGUID: evXJeMVyQYyiZEswWWx5fA== X-CSE-MsgGUID: MmoXkhPPTzWuVZUkL7BZJg== X-IronPort-AV: E=McAfee;i="6700,10204,11113"; a="16080149" X-IronPort-AV: E=Sophos;i="6.08,263,1712646000"; d="scan'208";a="16080149" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by fmvoesa113.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Jun 2024 04:15:53 -0700 X-CSE-ConnectionGUID: YfIROGg6RuqVGrKFSyQaTQ== X-CSE-MsgGUID: FaiRFmjUR1WCgKK77VPDcQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,263,1712646000"; d="scan'208";a="43719118" Received: from unknown (HELO silpixa00401119.ir.intel.com) ([10.55.129.167]) by orviesa009.jf.intel.com with ESMTP; 25 Jun 2024 04:15:53 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: Karol Kolacinski , bruce.richardson@intel.com, ian.stokes@intel.com Subject: [PATCH v3 033/129] net/ice/base: remove PTP aqc_driver_params Date: Tue, 25 Jun 2024 12:12:38 +0100 Message-ID: X-Mailer: git-send-email 2.43.0 In-Reply-To: References: 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: Karol Kolacinski 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 4c9325fb61..13db853eae 100644 --- a/drivers/net/ice/base/ice_adminq_cmd.h +++ b/drivers/net/ice/base/ice_adminq_cmd.h @@ -2878,11 +2878,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