diff options
Diffstat (limited to 'drivers/thunderbolt/retimer.c')
| -rw-r--r-- | drivers/thunderbolt/retimer.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/thunderbolt/retimer.c b/drivers/thunderbolt/retimer.c index 620bcf586ee2..c44fad2b9fbb 100644 --- a/drivers/thunderbolt/retimer.c +++ b/drivers/thunderbolt/retimer.c @@ -347,7 +347,7 @@ static int tb_retimer_add(struct tb_port *port, u8 index, u32 auth_status)  	ret = tb_retimer_nvm_add(rt);  	if (ret) {  		dev_err(&rt->dev, "failed to add NVM devices: %d\n", ret); -		device_del(&rt->dev); +		device_unregister(&rt->dev);  		return ret;  	} @@ -406,7 +406,7 @@ static struct tb_retimer *tb_port_find_retimer(struct tb_port *port, u8 index)   */  int tb_retimer_scan(struct tb_port *port)  { -	u32 status[TB_MAX_RETIMER_INDEX] = {}; +	u32 status[TB_MAX_RETIMER_INDEX + 1] = {};  	int ret, i, last_idx = 0;  	if (!port->cap_usb4) | 
