[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20221220222912.3145485-1-utkarsh.h.patel@intel.com>
Date: Tue, 20 Dec 2022 14:29:12 -0800
From: Utkarsh Patel <utkarsh.h.patel@...el.com>
To: mika.westerberg@...ux.intel.com, linux-kernel@...r.kernel.org,
linux-usb@...r.kernel.or
Cc: rajmohan.mani@...el.com, Utkarsh Patel <utkarsh.h.patel@...el.com>
Subject: [PATCH] thunderbolt: Do not report errors if on-board retimers are found
tb_retimer_scan() returns error even when on-board retimers are found.
Fixes: 1e56c88adecc ("thunderbolt: Runtime resume USB4 port when retimers are scanned")
Signed-off-by: Utkarsh Patel <utkarsh.h.patel@...el.com>
---
drivers/thunderbolt/retimer.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/thunderbolt/retimer.c b/drivers/thunderbolt/retimer.c
index 81252e31014a..6ebe7a2886ec 100644
--- a/drivers/thunderbolt/retimer.c
+++ b/drivers/thunderbolt/retimer.c
@@ -471,10 +471,9 @@ int tb_retimer_scan(struct tb_port *port, bool add)
break;
}
- if (!last_idx) {
- ret = 0;
+ ret = 0;
+ if (!last_idx)
goto out;
- }
/* Add on-board retimers if they do not exist already */
for (i = 1; i <= last_idx; i++) {
--
2.25.1
Powered by blists - more mailing lists