From nobody Mon Sep 15 01:56:49 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 48F5FC3DA78 for ; Tue, 17 Jan 2023 05:21:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235341AbjAQFVS (ORCPT ); Tue, 17 Jan 2023 00:21:18 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40314 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234840AbjAQFVJ (ORCPT ); Tue, 17 Jan 2023 00:21:09 -0500 Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E01D45263 for ; Mon, 16 Jan 2023 21:21:00 -0800 (PST) Received: from lelv0266.itg.ti.com ([10.180.67.225]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 30H5KrXL073175; Mon, 16 Jan 2023 23:20:53 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1673932853; bh=4KrU4rKvHGWN4haTjPdOGhuOQFXUGMP+s8OimkmkKiY=; h=From:To:CC:Subject:Date; b=CWhPZTKxeUiTrjXcNRVI6G2Kp52K8v7V3M59aoOEDBvty9cz7Rwusvd/Am2ynBIF0 vpaWv7wBuyx033sN/2J5ucvtgvO2rlEzvzhtLtAeErjRaKEkOcS9dqBNO15ek1hqVj pPSE6Q07qyX+2gnL5LTMKxlzV2Ln9NoJ8bQ/P0lo= Received: from DLEE101.ent.ti.com (dlee101.ent.ti.com [157.170.170.31]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 30H5KrbW113434 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 16 Jan 2023 23:20:53 -0600 Received: from DLEE112.ent.ti.com (157.170.170.23) by DLEE101.ent.ti.com (157.170.170.31) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16; Mon, 16 Jan 2023 23:20:53 -0600 Received: from lelv0326.itg.ti.com (10.180.67.84) by DLEE112.ent.ti.com (157.170.170.23) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16 via Frontend Transport; Mon, 16 Jan 2023 23:20:53 -0600 Received: from localhost (ileaxei01-snat2.itg.ti.com [10.180.69.6]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 30H5Kq5v014241; Mon, 16 Jan 2023 23:20:52 -0600 From: Jayesh Choudhary To: , CC: , , Subject: [PATCH v2] soc: ti: k3-ringacc: remove non-fatal probe deferral log Date: Tue, 17 Jan 2023 10:50:52 +0530 Message-ID: <20230117052052.29953-1-j-choudhary@ti.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Drop the non-fatal probe deferral log for getting MSI domain. This makes the kernel log clean and we do not get recurring logs stating: "Failed to get MSI domain". Signed-off-by: Jayesh Choudhary --- Changelog v1->v2: - Removed the print instead of dropping the loglevel according to the comme= nt on similar patch for udma: =20 v1 patch: drivers/soc/ti/k3-ringacc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/soc/ti/k3-ringacc.c b/drivers/soc/ti/k3-ringacc.c index e01e4d815230..776407f80dd4 100644 --- a/drivers/soc/ti/k3-ringacc.c +++ b/drivers/soc/ti/k3-ringacc.c @@ -1367,7 +1367,6 @@ static int k3_ringacc_init(struct platform_device *pd= ev, dev->msi.domain =3D of_msi_get_domain(dev, dev->of_node, DOMAIN_BUS_TI_SCI_INTA_MSI); if (!dev->msi.domain) { - dev_err(dev, "Failed to get MSI domain\n"); return -EPROBE_DEFER; } =20 --=20 2.25.1