Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4998ec33 authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: fix line over 80 characters in tcp_process()



Fix "line over 80 characters" issue found by checkpatch.pl script.

Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6e4f1a85
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -232,8 +232,10 @@ static inline void tcp_process(struct net_device *dev, struct txq_entry_t *tqe)
					 (u32)tcp_hdr_ptr[11];

				for (i = 0; i < tcp_session; i++) {
					u32 j = ack_session_info[i].seq_num;

					if (i < 2 * MAX_TCP_SESSION &&
					    ack_session_info[i].seq_num == seq_no) {
					    j == seq_no) {
						update_tcp_session(i, ack_no);
						break;
					}