diff options
author | 2025-07-22 22:54:08 +0200 | |
---|---|---|
committer | 2025-07-25 23:54:40 +0200 | |
commit | 4507d205f10216d3a6b873f0a2e9c634e23f35ac (patch) | |
tree | 321a12f61acad2a4a19c1de8b40c65aa3ba86b3a | |
parent | Merge tag 'qcom-drivers-for-6.17-2' of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into soc/drivers (diff) | |
parent | soc: hisilicon: kunpeng_hccs: Fix incorrect log information (diff) | |
download | wireguard-linux-4507d205f10216d3a6b873f0a2e9c634e23f35ac.tar.xz wireguard-linux-4507d205f10216d3a6b873f0a2e9c634e23f35ac.zip |
Merge tag 'hisi-drivers-for-6.17' of https://github.com/hisilicon/linux-hisi into soc/drivers
HiSilicon driver updates for v6.17
- Print the hardware ID instead of the index in the HCCS driver
* tag 'hisi-drivers-for-6.17' of https://github.com/hisilicon/linux-hisi:
soc: hisilicon: kunpeng_hccs: Fix incorrect log information
Link: https://lore.kernel.org/r/6879FFED.1050002@hisilicon.com
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | drivers/soc/hisilicon/kunpeng_hccs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/soc/hisilicon/kunpeng_hccs.c b/drivers/soc/hisilicon/kunpeng_hccs.c index 7fc353732d55..65ff45fdcac7 100644 --- a/drivers/soc/hisilicon/kunpeng_hccs.c +++ b/drivers/soc/hisilicon/kunpeng_hccs.c @@ -1295,11 +1295,11 @@ static int hccs_get_all_spec_port_idle_sta(struct hccs_dev *hdev, u8 port_type, if (ret) { dev_err(hdev->dev, "hccs%u on chip%u/die%u get idle status failed, ret = %d.\n", - k, i, j, ret); + port->port_id, chip->chip_id, die->die_id, ret); return ret; } else if (idle == 0) { dev_info(hdev->dev, "hccs%u on chip%u/die%u is busy.\n", - k, i, j); + port->port_id, chip->chip_id, die->die_id); return 0; } } |