Skip to content

Commit 4507d20

Browse files
committed
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/[email protected] Signed-off-by: Arnd Bergmann <[email protected]>
2 parents edf0a40 + b113643 commit 4507d20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/soc/hisilicon/kunpeng_hccs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1295,11 +1295,11 @@ static int hccs_get_all_spec_port_idle_sta(struct hccs_dev *hdev, u8 port_type,
12951295
if (ret) {
12961296
dev_err(hdev->dev,
12971297
"hccs%u on chip%u/die%u get idle status failed, ret = %d.\n",
1298-
k, i, j, ret);
1298+
port->port_id, chip->chip_id, die->die_id, ret);
12991299
return ret;
13001300
} else if (idle == 0) {
13011301
dev_info(hdev->dev, "hccs%u on chip%u/die%u is busy.\n",
1302-
k, i, j);
1302+
port->port_id, chip->chip_id, die->die_id);
13031303
return 0;
13041304
}
13051305
}

0 commit comments

Comments
 (0)