]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: remove warnings line over 80 characters
authorLeo Kim <leo.kim@atmel.com>
Fri, 6 Nov 2015 02:12:54 +0000 (11:12 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
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>
drivers/staging/wilc1000/wilc_wlan.c

index 52351c6186572a175cf87fd05cf793ec55525fb6..66d7f1e86419eb260f5cd8baf6efdb7e6da7ccfe 100644 (file)
@@ -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) +