mirror of https://gitee.com/openkylin/linux.git
soundwire: use consistent format for Slave devID logs
We mix decimal and hexadecimal values, this leads to confusions in dmesg logs and bug reports. Let's add a 0x prefix for all hexadecimal values and a format when more than 4 bits are used. Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Rander Wang <rander.wang@linux.intel.com> Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com> Link: https://lore.kernel.org/r/20210115053738.22630-2-yung-chuan.liao@linux.intel.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
parent
ee3db94243
commit
c397efb77d
|
@ -679,9 +679,8 @@ void sdw_extract_slave_id(struct sdw_bus *bus,
|
|||
id->class_id = SDW_CLASS_ID(addr);
|
||||
|
||||
dev_dbg(bus->dev,
|
||||
"SDW Slave class_id %x, part_id %x, mfg_id %x, unique_id %x, version %x\n",
|
||||
id->class_id, id->part_id, id->mfg_id,
|
||||
id->unique_id, id->sdw_version);
|
||||
"SDW Slave class_id 0x%02x, mfg_id 0x%04x, part_id 0x%04x, unique_id 0x%x, version 0x%x\n",
|
||||
id->class_id, id->mfg_id, id->part_id, id->unique_id, id->sdw_version);
|
||||
}
|
||||
|
||||
static int sdw_program_device_num(struct sdw_bus *bus)
|
||||
|
|
|
@ -163,15 +163,13 @@ int sdw_acpi_find_slaves(struct sdw_bus *bus)
|
|||
|
||||
if (id.unique_id != id2.unique_id) {
|
||||
dev_dbg(bus->dev,
|
||||
"Valid unique IDs %x %x for Slave mfg %x part %d\n",
|
||||
id.unique_id, id2.unique_id,
|
||||
id.mfg_id, id.part_id);
|
||||
"Valid unique IDs 0x%x 0x%x for Slave mfg_id 0x%04x, part_id 0x%04x\n",
|
||||
id.unique_id, id2.unique_id, id.mfg_id, id.part_id);
|
||||
ignore_unique_id = false;
|
||||
} else {
|
||||
dev_err(bus->dev,
|
||||
"Invalid unique IDs %x %x for Slave mfg %x part %d\n",
|
||||
id.unique_id, id2.unique_id,
|
||||
id.mfg_id, id.part_id);
|
||||
"Invalid unique IDs 0x%x 0x%x for Slave mfg_id 0x%04x, part_id 0x%04x\n",
|
||||
id.unique_id, id2.unique_id, id.mfg_id, id.part_id);
|
||||
return -ENODEV;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue