mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 11:26:22 -04:00
staging: wilc1000: remove warnings line over 80 characters
This patch removes the warnings reported by checkpatch.pl for line over 80 characters. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f91c5d7716
commit
4478c62aa4
@@ -308,7 +308,10 @@ static inline int tcp_process(struct net_device *dev, struct txq_entry_t *tqe)
|
||||
if (total_length == (IHL + data_offset)) {
|
||||
u32 seq_no, ack_no;
|
||||
|
||||
seq_no = (((u32)tcp_hdr_ptr[4]) << 24) + (((u32)tcp_hdr_ptr[5]) << 16) + (((u32)tcp_hdr_ptr[6]) << 8) + ((u32)tcp_hdr_ptr[7]);
|
||||
seq_no = ((u32)tcp_hdr_ptr[4] << 24) +
|
||||
((u32)tcp_hdr_ptr[5] << 16) +
|
||||
((u32)tcp_hdr_ptr[6] << 8) +
|
||||
(u32)tcp_hdr_ptr[7];
|
||||
|
||||
ack_no = ((u32)tcp_hdr_ptr[8] << 24) +
|
||||
((u32)tcp_hdr_ptr[9] << 16) +
|
||||
|
||||
Reference in New Issue
Block a user