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 E120441F45; Wed, 12 Jun 2024 17:15:31 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4F53742EA3; Wed, 12 Jun 2024 17:05:26 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10]) by mails.dpdk.org (Postfix) with ESMTP id 7430642E61 for ; Wed, 12 Jun 2024 17:05:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1718204715; x=1749740715; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=yOZnuQn7pXVqDSNM9bxo/tiiIIjp76INH2AEg/IdliU=; b=TTyGmosU5x7mP+IVWE6uLKorsXm0xv4xeYUwMkq6DtdrXLDtqymcECFD Z/cb9Eosm0zFFYyIqJuyDVjORD8QBNUJbujOHY8PmEXSrUnwPpjYSOpFx rMfcxuwXYxGUUgS2CrAnMlKGTvt0SiS1bI/ts+ib0wqHcbvth8XlPmV4F Pi8VTV9ISCYHlHdFwxzgc6/MhrgD2KkObdcUWDJ/EY0d4lFU4MQHFnlXD M+7xzjC4EtFgZQq5XwP5D0eWeUL+SeD9LCDkfRh8NOfHPeTXILCDROEDO kvrqSHbyVsjEg5EvooiC4Su2uPtLzTRl63Lw7CHxgrPwfbBjKQQE8OETh A==; X-CSE-ConnectionGUID: iQNUJwMAQHq774xip3UGsg== X-CSE-MsgGUID: +dpY1jE3QR+sjThE+wsCMw== X-IronPort-AV: E=McAfee;i="6700,10204,11101"; a="32459614" X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="32459614" 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:05:14 -0700 X-CSE-ConnectionGUID: 6lky0MZTSzWtNYRlbXGaCg== X-CSE-MsgGUID: rhY9zR54QwebMC8YTfFcYw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="39925486" Received: from silpixa00401119.ir.intel.com ([10.55.129.167]) by orviesa009.jf.intel.com with ESMTP; 12 Jun 2024 08:05:13 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: ian.stokes@intel.com, bruce.richardson@intel.com, Jacob Keller Subject: [PATCH v2 070/148] net/ice/base: be more verbose in configuring Rx timestamp offset Date: Wed, 12 Jun 2024 16:01:04 +0100 Message-ID: <102e387c048d7bf1e034456604e695fa617a0a67.1718204528.git.anatoly.burakov@intel.com> 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 Add an info message at the end of successful Rx timestamp offset configuration. Signed-off-by: Jacob Keller Signed-off-by: Anatoly Burakov --- drivers/net/ice/base/ice_ptp_hw.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/ice/base/ice_ptp_hw.c b/drivers/net/ice/base/ice_ptp_hw.c index 81b57b068c..1ba8afa544 100644 --- a/drivers/net/ice/base/ice_ptp_hw.c +++ b/drivers/net/ice/base/ice_ptp_hw.c @@ -4065,6 +4065,9 @@ int ice_phy_cfg_rx_offset_e822(struct ice_hw *hw, u8 port) if (err) return err; + ice_info(hw, + "Port=%d Rx vernier offset calibration complete\n", port); + return 0; } -- 2.43.0