diff mbox series

[4/5] ASoC: topology: Remove redundant log

Message ID 20230519195611.4068853-5-amadeuszx.slawinski@linux.intel.com (mailing list archive)
State Accepted
Commit db756c5c35dfcf820c2b0d7eec526e8dfe79a96d
Headers show
Series ASoC: topology: Clean up error messages handling | expand

Commit Message

Amadeusz Sławiński May 19, 2023, 7:56 p.m. UTC
soc_tplg_dapm_complete() logs all the failures in detail already.

Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
---
 sound/soc/soc-topology.c | 3 ---
 1 file changed, 3 deletions(-)
diff mbox series

Patch

diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c
index 0249e915eafe..9bb4c6d2a2c9 100644
--- a/sound/soc/soc-topology.c
+++ b/sound/soc/soc-topology.c
@@ -2510,9 +2510,6 @@  static int soc_tplg_process_headers(struct soc_tplg *tplg)
 
 	/* signal DAPM we are complete */
 	ret = soc_tplg_dapm_complete(tplg);
-	if (ret < 0)
-		dev_err(tplg->dev,
-			"ASoC: failed to initialise DAPM from Firmware\n");
 
 	return ret;
 }