mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 20:54:10 +08:00
ASoC: soc-acpi: improve log messagesin link_slaves_found()
use 'part_id' to follow MIPI/SoundWire wording and use more consistent %#x format. Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Rander Wang <rander.wang@intel.com> Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com> Link: https://lore.kernel.org/r/20230731213242.434594-4-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
bb29a33c4b
commit
cf35ab3d58
@ -181,16 +181,16 @@ bool snd_soc_acpi_sdw_link_slaves_found(struct device *dev,
|
||||
unique_id = SDW_UNIQUE_ID(adr);
|
||||
if (reported_part_count == 1 ||
|
||||
ids[j].id.unique_id == unique_id) {
|
||||
dev_dbg(dev, "found %x at link %d\n", part_id, link_id);
|
||||
dev_dbg(dev, "found part_id %#x at link %d\n", part_id, link_id);
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
dev_dbg(dev, "part %x reported %d expected %d on link %d, skipping\n",
|
||||
dev_dbg(dev, "part_id %#x reported %d expected %d on link %d, skipping\n",
|
||||
part_id, reported_part_count, expected_part_count, link_id);
|
||||
}
|
||||
}
|
||||
if (j == num_slaves) {
|
||||
dev_dbg(dev, "Slave %x not found\n", part_id);
|
||||
dev_dbg(dev, "Slave part_id %#x not found\n", part_id);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user