From: Colin Ian King Date: Thu, 30 Dec 2021 15:39:00 +0000 (+0000) Subject: net/smc: remove redundant re-assignment of pointer link X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3a856c14c31bb8ba35534e9a2f2273c1b322f372;p=linux.git net/smc: remove redundant re-assignment of pointer link The pointer link is being re-assigned the same value that it was initialized with in the previous declaration statement. The re-assignment is redundant and can be removed. Fixes: 387707fdf486 ("net/smc: convert static link ID to dynamic references") Signed-off-by: Colin Ian King Reviewed-by: Tony Lu Signed-off-by: David S. Miller --- diff --git a/net/smc/smc_clc.c b/net/smc/smc_clc.c index 8409ab71a5e42..6be95a2a7b251 100644 --- a/net/smc/smc_clc.c +++ b/net/smc/smc_clc.c @@ -1021,7 +1021,6 @@ static int smc_clc_send_confirm_accept(struct smc_sock *smc, struct smc_link *link = conn->lnk; /* SMC-R specific settings */ - link = conn->lnk; memcpy(clc->hdr.eyecatcher, SMC_EYECATCHER, sizeof(SMC_EYECATCHER)); clc->hdr.typev1 = SMC_TYPE_R;