diff options
author | Mika Westerberg <[email protected]> | 2021-04-01 20:16:25 +0300 |
---|---|---|
committer | Mika Westerberg <[email protected]> | 2021-06-01 10:53:31 +0300 |
commit | 0f28879cf6836f170773a9456c856e1f08f56764 (patch) | |
tree | 4f9c6236da911ce6f5f3f825fed42d51d7b309a8 | |
parent | bfa8f78e06ed0b495a5736380de0e7f833a5efbe (diff) |
thunderbolt: Log the link as TBT instead of TBT3
The upstream port can be connected to any previous generation
Thunderbolt port so logging as "TBT" is more accurate than "TBT3.
No functional changes.
Signed-off-by: Mika Westerberg <[email protected]>
Reviewed-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/thunderbolt/usb4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thunderbolt/usb4.c b/drivers/thunderbolt/usb4.c index edab8ea63c0b..94cc25cc6388 100644 --- a/drivers/thunderbolt/usb4.c +++ b/drivers/thunderbolt/usb4.c @@ -260,7 +260,7 @@ int usb4_switch_setup(struct tb_switch *sw) parent = tb_switch_parent(sw); downstream_port = tb_port_at(tb_route(sw), parent); sw->link_usb4 = link_is_usb4(downstream_port); - tb_sw_dbg(sw, "link: %s\n", sw->link_usb4 ? "USB4" : "TBT3"); + tb_sw_dbg(sw, "link: %s\n", sw->link_usb4 ? "USB4" : "TBT"); xhci = val & ROUTER_CS_6_HCI; tbt3 = !(val & ROUTER_CS_6_TNS); |