Message ID | 20221021173504.27546-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | RDMA/hw/qib/qib_iba6120: Remove variable freeze_cnt | expand |
On Fri, 21 Oct 2022 18:35:04 +0100, Colin Ian King wrote: > The variable freeze_cnt being incremented but it is never referenced, > it is redundant and can be removed. > > Applied, thanks! [1/1] RDMA/hw/qib/qib_iba6120: Remove variable freeze_cnt https://git.kernel.org/rdma/rdma/c/5dc1b37d75e713 Best regards,
diff --git a/drivers/infiniband/hw/qib/qib_iba6120.c b/drivers/infiniband/hw/qib/qib_iba6120.c index aea571943768..23a81edf3f7a 100644 --- a/drivers/infiniband/hw/qib/qib_iba6120.c +++ b/drivers/infiniband/hw/qib/qib_iba6120.c @@ -799,12 +799,9 @@ static void qib_handle_6120_hwerrors(struct qib_devdata *dd, char *msg, hwerrs &= ~TXE_PIO_PARITY; } - if (!hwerrs) { - static u32 freeze_cnt; - - freeze_cnt++; + if (!hwerrs) qib_6120_clear_freeze(dd); - } else + else isfatal = 1; }
The variable freeze_cnt being incremented but it is never referenced, it is redundant and can be removed. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- drivers/infiniband/hw/qib/qib_iba6120.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-)