diff options
Diffstat (limited to 'drivers/thunderbolt/switch.c')
| -rw-r--r-- | drivers/thunderbolt/switch.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c index 9840fdecb73b..c6f30b1695a9 100644 --- a/drivers/thunderbolt/switch.c +++ b/drivers/thunderbolt/switch.c @@ -460,7 +460,7 @@ int tb_switch_resume(struct tb_switch *sw)  		tb_sw_warn(sw, "uid read failed\n");  		return err;  	} -	if (sw->uid != uid) { +	if (sw != sw->tb->root_switch && sw->uid != uid) {  		tb_sw_info(sw,  			"changed while suspended (uid %#llx -> %#llx)\n",  			sw->uid, uid);  |