diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2023-02-03 14:55:41 +0100 |
---|---|---|
committer | Mika Westerberg <mika.westerberg@linux.intel.com> | 2023-03-13 10:54:25 +0100 |
commit | d2d6ddf188f609861489d5d188d545856a3ed399 (patch) | |
tree | 3428ae9f85b981339f57127ff53bb952e5659ce8 /drivers/thunderbolt/switch.c | |
parent | thunderbolt: Add missing UNSET_INBOUND_SBTX for retimer access (diff) | |
download | linux-d2d6ddf188f609861489d5d188d545856a3ed399.tar.xz linux-d2d6ddf188f609861489d5d188d545856a3ed399.zip |
thunderbolt: Call tb_check_quirks() after initializing adapters
In order to apply quirks based on certain adapter types move call to
tb_check_quirks() happen after the adapters are initialized. This should
not affect the existing quirks.
Cc: stable@vger.kernel.org
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/thunderbolt/switch.c')
-rw-r--r-- | drivers/thunderbolt/switch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c index 3370e18ba05f..da373ac38285 100644 --- a/drivers/thunderbolt/switch.c +++ b/drivers/thunderbolt/switch.c @@ -2968,8 +2968,6 @@ int tb_switch_add(struct tb_switch *sw) dev_warn(&sw->dev, "reading DROM failed: %d\n", ret); tb_sw_dbg(sw, "uid: %#llx\n", sw->uid); - tb_check_quirks(sw); - ret = tb_switch_set_uuid(sw); if (ret) { dev_err(&sw->dev, "failed to set UUID\n"); @@ -2988,6 +2986,8 @@ int tb_switch_add(struct tb_switch *sw) } } + tb_check_quirks(sw); + tb_switch_default_link_ports(sw); ret = tb_switch_update_link_attributes(sw); |