Skip to content

Commit e50a763

Browse files
jayesh-tinmenon
authored andcommitted
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: 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>
1 parent cdbab28 commit e50a763

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

drivers/soc/ti/k3-ringacc.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,10 +1373,8 @@ static int k3_ringacc_init(struct platform_device *pdev,
13731373

13741374
dev->msi.domain = of_msi_get_domain(dev, dev->of_node,
13751375
DOMAIN_BUS_TI_SCI_INTA_MSI);
1376-
if (!dev->msi.domain) {
1377-
dev_err(dev, "Failed to get MSI domain\n");
1376+
if (!dev->msi.domain)
13781377
return -EPROBE_DEFER;
1379-
}
13801378

13811379
ret = k3_ringacc_probe_dt(ringacc);
13821380
if (ret)

0 commit comments

Comments
 (0)