Message ID | 20220715045724.23052-1-wangborong@cdjrlc.com (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | cnic: Fix comment typo | expand |
diff --git a/drivers/net/ethernet/broadcom/cnic.c b/drivers/net/ethernet/broadcom/cnic.c index e86503d97f32..544f17735b8b 100644 --- a/drivers/net/ethernet/broadcom/cnic.c +++ b/drivers/net/ethernet/broadcom/cnic.c @@ -4127,7 +4127,7 @@ static int cnic_ready_to_close(struct cnic_sock *csk, u32 opcode) * 2. If the expected event is CLOSE_COMP or RESET_COMP, we accept any * event * 3. If the expected event is 0, meaning the connection was never - * never established, we accept the opcode from cm_abort. + * established, we accept the opcode from cm_abort. */ if (opcode == csk->state || csk->state == 0 || csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP ||
The double `never' is duplicated in line 4130, remove one. Signed-off-by: Jason Wang <wangborong@cdjrlc.com> --- drivers/net/ethernet/broadcom/cnic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)