mirror of
https://github.com/torvalds/linux.git
synced 2025-11-03 10:10:33 +02:00
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: Cezary Rojewski <cezary.rojewski@intel.com> Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> Link: https://lore.kernel.org/r/20230929103243.705433-1-amadeuszx.slawinski@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7e1fe5d9e7
commit
e80f238d2b
1 changed files with 2 additions and 2 deletions
|
|
@ -1445,8 +1445,8 @@ static int soc_probe_component(struct snd_soc_card *card,
|
|||
if (component->card) {
|
||||
if (component->card != card) {
|
||||
dev_err(component->dev,
|
||||
"Trying to bind component to card \"%s\" but is already bound to card \"%s\"\n",
|
||||
card->name, component->card->name);
|
||||
"Trying to bind component \"%s\" to card \"%s\" but is already bound to card \"%s\"\n",
|
||||
component->name, card->name, component->card->name);
|
||||
return -ENODEV;
|
||||
}
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue