summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMika Westerberg <mika.westerberg@linux.intel.com>2023-08-25 10:10:35 +0300
committerMika Westerberg <mika.westerberg@linux.intel.com>2023-09-15 13:04:43 +0300
commit0c35ac18256942e66d8dab6ca049185812e60c69 (patch)
treea7cdaf52f3ffe0a132c862ac5ce09bea9811844e
parent0bb80ecc33a8fb5a682236443c1e740d5c917d1d (diff)
downloadlinux-0c35ac18256942e66d8dab6ca049185812e60c69.tar.xz
thunderbolt: Apply USB 3.x bandwidth quirk only in software connection manager
This is not needed when firmware connection manager is run so limit this to software connection manager. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
-rw-r--r--drivers/thunderbolt/quirks.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/thunderbolt/quirks.c b/drivers/thunderbolt/quirks.c
index 488138a28ae1..e6bfa63b40ae 100644
--- a/drivers/thunderbolt/quirks.c
+++ b/drivers/thunderbolt/quirks.c
@@ -31,6 +31,9 @@ static void quirk_usb3_maximum_bandwidth(struct tb_switch *sw)
{
struct tb_port *port;
+ if (tb_switch_is_icm(sw))
+ return;
+
tb_switch_for_each_port(sw, port) {
if (!tb_port_is_usb3_down(port))
continue;