From patchwork Fri Jan 26 22:36:13 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Saeed Mahameed X-Patchwork-Id: 13533429 X-Patchwork-Delegate: kuba@kernel.org Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 42CC05579B for ; Fri, 26 Jan 2024 22:37:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706308625; cv=none; b=gC0SmGmVWsSeM+1/S5DNy/OwtHP0RMfHmccGyXYEqUQj2I+8SWxaTcIYAvngFTCTMbVzQZ+Lpd4GeKUYLbFAY+ZnX0GCt3YF8S588u9ezHdQQxIdc4iQFnOI4oef1IEGC41BN/sOSI+NT0cSF5nlAywv5Cgs+zquzD6MTlHCy+o= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706308625; c=relaxed/simple; bh=7OiCGCkl9Ca0tDBUYpf/oaXUUZrI6//IIvPbE00HcoY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=HnRLHaGJkTXsczDYAvB4uBJnz1WdR2ZNcFQ1l/o4aCN0b2V80FTmck/cg+coWpXlvYjd5MHWsbcA3faX1g1+UqizT3G0yh9V5lsFyB5YgyCRcP0343+Z+OMMpZu8xBMjacb7tbPqSXD2fMoQDWKimI0aTvFNRsq+u9xTSeAEez4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=opU9tb8I; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="opU9tb8I" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E8C3CC433A6; Fri, 26 Jan 2024 22:37:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1706308625; bh=7OiCGCkl9Ca0tDBUYpf/oaXUUZrI6//IIvPbE00HcoY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=opU9tb8IQnFx5HOWdknzCUW945Xet0F8blv4JE4KAR14DWvaudjCPH6EUnLAvTPgp TdRs2XEQR3w4LfL2b5va1Hw7R/8GyGdhSJhVmMmKuPgACn5EZV7c041fzgdwswH+gB FMZJ8/KDHzHx0Y61so+ip1tQDuXkpduwGTI8LYZLcDrkMOdESQ2fvHPKXHvbo6iN8E CVV3XK5qu0Hs9ylaQGMM0ErL2N0Uzm+EDXOLoamrlrN13QVhA59tVEl6cw65UMh3oL IqYv12fRslfPr11pqBPjNK9Ejn1gnwqNfDvzDcrpytEFVcNxXt8uYKwDIfSwwLhuIY psNoZu6gKx4pw== From: Saeed Mahameed To: "David S. Miller" , Jakub Kicinski , Paolo Abeni , Eric Dumazet Cc: Saeed Mahameed , netdev@vger.kernel.org, Tariq Toukan , Gal Pressman , Leon Romanovsky , Jianbo Liu Subject: [net-next 12/15] net/mlx5: Change missing SyncE capability print to debug Date: Fri, 26 Jan 2024 14:36:13 -0800 Message-ID: <20240126223616.98696-13-saeed@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240126223616.98696-1-saeed@kernel.org> References: <20240126223616.98696-1-saeed@kernel.org> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Patchwork-Delegate: kuba@kernel.org From: Gal Pressman Lack of SyncE capability should not emit a warning, change the print to debug level. Signed-off-by: Gal Pressman Reviewed-by: Jianbo Liu Signed-off-by: Saeed Mahameed --- drivers/net/ethernet/mellanox/mlx5/core/dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/mellanox/mlx5/core/dev.c b/drivers/net/ethernet/mellanox/mlx5/core/dev.c index cf0477f53dc4..47e7c2639774 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/dev.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/dev.c @@ -210,7 +210,7 @@ static bool is_dpll_supported(struct mlx5_core_dev *dev) return false; if (!MLX5_CAP_MCAM_REG2(dev, synce_registers)) { - mlx5_core_warn(dev, "Missing SyncE capability\n"); + mlx5_core_dbg(dev, "Missing SyncE capability\n"); return false; }