Commit e80f238d authored by Amadeusz Sławiński's avatar Amadeusz Sławiński Committed by Mark Brown

ASoC: core: Print component name when printing log

When printing log related to component it is useful to know, to which
component it applies to.
Reviewed-by: default avatarCezary Rojewski <cezary.rojewski@intel.com>
Signed-off-by: default avatarAmadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Link: https://lore.kernel.org/r/20230929103243.705433-1-amadeuszx.slawinski@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7e1fe5d9
...@@ -1445,8 +1445,8 @@ static int soc_probe_component(struct snd_soc_card *card, ...@@ -1445,8 +1445,8 @@ static int soc_probe_component(struct snd_soc_card *card,
if (component->card) { if (component->card) {
if (component->card != card) { if (component->card != card) {
dev_err(component->dev, dev_err(component->dev,
"Trying to bind component to card \"%s\" but is already bound to card \"%s\"\n", "Trying to bind component \"%s\" to card \"%s\" but is already bound to card \"%s\"\n",
card->name, component->card->name); component->name, card->name, component->card->name);
return -ENODEV; return -ENODEV;
} }
return 0; return 0;
......
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