Commit 693b5bb6 authored by Mika Westerberg's avatar Mika Westerberg
Browse files

thunderbolt: Show path name in debug log when path is deactivated



Similarly as we do when activating the path. Helps in debugging.

Signed-off-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
parent a674b83d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -581,10 +581,10 @@ int tb_path_activate(struct tb_path *path)
		}
	}
	path->activated = true;
	tb_dbg(path->tb, "path activation complete\n");
	tb_dbg(path->tb, "%s path activation complete\n", path->name);
	return 0;
err:
	tb_WARN(path->tb, "path activation failed\n");
	tb_WARN(path->tb, "%s path activation failed\n", path->name);
	return res;
}