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

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.com


Signed-off-by: default avatarNishanth Menon <nm@ti.com>
parent cdbab28c
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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)