thunderbolt: Do not report errors if on-board retimers are found
authorUtkarsh Patel <utkarsh.h.patel@intel.com>
Fri, 23 Dec 2022 04:22:46 +0000 (20:22 -0800)
committerMika Westerberg <mika.westerberg@linux.intel.com>
Tue, 27 Dec 2022 08:39:52 +0000 (10:39 +0200)
Currently we return an error even if on-board retimers are found and
that's not expected. Fix this to return an error only if there was one
and 0 otherwise.

Fixes: 1e56c88adecc ("thunderbolt: Runtime resume USB4 port when retimers are scanned")
Cc: stable@vger.kernel.org
Signed-off-by: Utkarsh Patel <utkarsh.h.patel@intel.com>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
drivers/thunderbolt/retimer.c

index 81252e3..6ebe7a2 100644 (file)
@@ -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++) {