soc: ti: k3-ringacc: remove non-fatal probe deferral log
authorJayesh Choudhary <j-choudhary@ti.com>
Fri, 28 Jul 2023 05:33:56 +0000 (11:03 +0530)
committerNishanth Menon <nm@ti.com>
Wed, 2 Aug 2023 04:56:40 +0000 (23:56 -0500)
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>
Link: https://lore.kernel.org/r/20230728053356.31044-1-j-choudhary@ti.com
Signed-off-by: Nishanth Menon <nm@ti.com>
drivers/soc/ti/k3-ringacc.c

index c6fdf0a..4c13536 100644 (file)
@@ -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)