summaryrefslogtreecommitdiffstats
path: root/drivers/thunderbolt/ctl.c
diff options
context:
space:
mode:
authorMika Westerberg <mika.westerberg@linux.intel.com>2022-05-05 13:58:04 +0300
committerMika Westerberg <mika.westerberg@linux.intel.com>2023-01-17 11:36:39 +0200
commit49f2b350f330cf600cf0563fa3e55ba1c1799440 (patch)
tree8ba0f23a8d7ee83eac11fd2b9dadd63c0fa41584 /drivers/thunderbolt/ctl.c
parent953ff25fc9fb831a675259ce1e738c94fb6202b6 (diff)
downloadlinux-49f2b350f330cf600cf0563fa3e55ba1c1799440.tar.gz
linux-49f2b350f330cf600cf0563fa3e55ba1c1799440.tar.bz2
linux-49f2b350f330cf600cf0563fa3e55ba1c1799440.zip
thunderbolt: Use decimal port number in control and tunnel logs too
Use decimal number instead of hex in port numbers as we have been doing with other logging functions too. This makes the output more consistent. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/thunderbolt/ctl.c')
-rw-r--r--drivers/thunderbolt/ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thunderbolt/ctl.c b/drivers/thunderbolt/ctl.c
index 0c661a706160..25f7868257de 100644
--- a/drivers/thunderbolt/ctl.c
+++ b/drivers/thunderbolt/ctl.c
@@ -754,7 +754,7 @@ int tb_cfg_ack_plug(struct tb_ctl *ctl, u64 route, u32 port, bool unplug)
.pg = unplug ? TB_CFG_ERROR_PG_HOT_UNPLUG
: TB_CFG_ERROR_PG_HOT_PLUG,
};
- tb_ctl_dbg(ctl, "acking hot %splug event on %llx:%x\n",
+ tb_ctl_dbg(ctl, "acking hot %splug event on %llx:%u\n",
unplug ? "un" : "", route, port);
return tb_ctl_tx(ctl, &pkg, sizeof(pkg), TB_CFG_PKG_ERROR);
}