[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20221128101334.512816-1-j-choudhary@ti.com>
Date: Mon, 28 Nov 2022 15:43:34 +0530
From: Jayesh Choudhary <j-choudhary@...com>
To: <vkoul@...nel.org>, <peter.ujfalusi@...il.com>
CC: <dmaengine@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<j-choudhary@...com>
Subject: [PATCH] dmaengine: ti: k3-udma: drop loglevel for non-fatal probe deferral log
Change the log level from dev_err() to dev_dbg() for 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 <j-choudhary@...com>
---
drivers/dma/ti/k3-udma.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/dma/ti/k3-udma.c b/drivers/dma/ti/k3-udma.c
index ce8b80bb34d7..e540166cf4c7 100644
--- a/drivers/dma/ti/k3-udma.c
+++ b/drivers/dma/ti/k3-udma.c
@@ -5344,7 +5344,7 @@ static int udma_probe(struct platform_device *pdev)
dev->msi.domain = 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");
+ dev_dbg(dev, "Failed to get MSI domain\n");
return -EPROBE_DEFER;
}
--
2.25.1
Powered by blists - more mailing lists