mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 14:12:51 +00:00
staging: wilc1000: fix line over 80 chars in add_tcp_pending_ack()
Fix "line over 80 characters" issue reported by checkpatch.pl script. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9574f38c43
commit
6e4f1a856c
@ -173,11 +173,13 @@ static inline int update_tcp_session(u32 index, u32 ack)
|
||||
static inline int add_tcp_pending_ack(u32 ack, u32 session_index,
|
||||
struct txq_entry_t *txqe)
|
||||
{
|
||||
if (pending_base + pending_acks < MAX_PENDING_ACKS) {
|
||||
pending_acks_info[pending_base + pending_acks].ack_num = ack;
|
||||
pending_acks_info[pending_base + pending_acks].txqe = txqe;
|
||||
pending_acks_info[pending_base + pending_acks].session_index = session_index;
|
||||
txqe->tcp_pending_ack_idx = pending_base + pending_acks;
|
||||
u32 i = pending_base + pending_acks;
|
||||
|
||||
if (i < MAX_PENDING_ACKS) {
|
||||
pending_acks_info[i].ack_num = ack;
|
||||
pending_acks_info[i].txqe = txqe;
|
||||
pending_acks_info[i].session_index = session_index;
|
||||
txqe->tcp_pending_ack_idx = i;
|
||||
pending_acks++;
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user