diff options
author | Jayesh Choudhary <j-choudhary@ti.com> | 2023-01-17 06:18:55 +0100 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2023-01-17 10:01:12 +0100 |
commit | ad4ce0789033529673aa69ef1568ac37f38f9f27 (patch) | |
tree | 42626b67eae6b9f1165bba4b8c3cb47ed5e86034 /drivers/dma | |
parent | dt-bindings: dma: qcom: gpi: add compatible for sm8550 (diff) | |
download | linux-ad4ce0789033529673aa69ef1568ac37f38f9f27.tar.xz linux-ad4ce0789033529673aa69ef1568ac37f38f9f27.zip |
dmaengine: ti: k3-udma: remove non-fatal probe deferral log
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 <j-choudhary@ti.com>
Acked-by: Peter Ujfalusi <peter.ujfalusi@gmail.com>
Link: https://lore.kernel.org/r/20230117051855.29644-1-j-choudhary@ti.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/ti/k3-udma.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/dma/ti/k3-udma.c b/drivers/dma/ti/k3-udma.c index 1d3d1b387b96..5ea1656b8919 100644 --- a/drivers/dma/ti/k3-udma.c +++ b/drivers/dma/ti/k3-udma.c @@ -5375,7 +5375,6 @@ 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"); return -EPROBE_DEFER; } |