Commit e50a7635 authored by Jayesh Choudhary's avatar Jayesh Choudhary Committed by Nishanth Menon

soc: ti: k3-ringacc: 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: default avatarJayesh Choudhary <j-choudhary@ti.com>
Link: https://lore.kernel.org/r/20230728053356.31044-1-j-choudhary@ti.comSigned-off-by: default avatarNishanth Menon <nm@ti.com>
parent cdbab28c
......@@ -1373,10 +1373,8 @@ static int k3_ringacc_init(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");
if (!dev->msi.domain)
return -EPROBE_DEFER;
}
ret = k3_ringacc_probe_dt(ringacc);
if (ret)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment