summaryrefslogtreecommitdiff
path: root/drivers/thunderbolt
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2023-11-11 23:15:43 +0300
committerMika Westerberg <mika.westerberg@linux.intel.com>2023-11-14 15:17:29 +0300
commit655b8af57d31e07340b023a807e43dadf81a0818 (patch)
tree10b2d9b714bc0946b4b0daac0b56913b2cad6b57 /drivers/thunderbolt
parentb85ea95d086471afb4ad062012a4d73cd328fa86 (diff)
downloadlinux-655b8af57d31e07340b023a807e43dadf81a0818.tar.xz
thunderbolt: Remove duplicated re-assignment of pointer 'out'
The pointer 'out' is initialized and then a few statements later being re-assigned the same value. The second re-assignment is redundant and can be removed. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/thunderbolt')
-rw-r--r--drivers/thunderbolt/tunnel.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
index 7534cd3a81f4..8d45cb4f04ab 100644
--- a/drivers/thunderbolt/tunnel.c
+++ b/drivers/thunderbolt/tunnel.c
@@ -1313,8 +1313,6 @@ static void tb_dp_dump(struct tb_tunnel *tunnel)
"DP IN maximum supported bandwidth %u Mb/s x%u = %u Mb/s\n",
rate, lanes, tb_dp_bandwidth(rate, lanes));
- out = tunnel->dst_port;
-
if (tb_port_read(out, &dp_cap, TB_CFG_PORT,
out->cap_adap + DP_LOCAL_CAP, 1))
return;