diff options
| author | Dmitry Torokhov <[email protected]> | 2023-08-30 16:06:38 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <[email protected]> | 2023-08-30 16:06:38 -0700 | 
| commit | 1ac731c529cd4d6adbce134754b51ff7d822b145 (patch) | |
| tree | 143ab3f35ca5f3b69f583c84e6964b17139c2ec1 /drivers/thunderbolt/switch.c | |
| parent | 07b4c950f27bef0362dc6ad7ee713aab61d58149 (diff) | |
| parent | 54116d442e001e1b6bd482122043b1870998a1f3 (diff) | |
Merge branch 'next' into for-linus
Prepare input updates for 6.6 merge window.
Diffstat (limited to 'drivers/thunderbolt/switch.c')
| -rw-r--r-- | drivers/thunderbolt/switch.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c index 3370e18ba05f..51e86b5171c7 100644 --- a/drivers/thunderbolt/switch.c +++ b/drivers/thunderbolt/switch.c @@ -271,9 +271,9 @@ static int nvm_authenticate(struct tb_switch *sw, bool auth_only)  		}  		sw->nvm->authenticating = true;  		return usb4_switch_nvm_authenticate(sw); -	} else if (auth_only) { -		return -EOPNOTSUPP;  	} +	if (auth_only) +		return -EOPNOTSUPP;  	sw->nvm->authenticating = true;  	if (!tb_route(sw)) { @@ -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);  |