]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: rename Total_Length variable
authorLeo Kim <leo.kim@atmel.com>
Fri, 6 Nov 2015 02:12:51 +0000 (11:12 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch rename the Total_Length variable to total_length
to avoid CamelCase naming convention.

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 b07d229eeedcbad9d1a0d99292120469b66ee9ca..34a8b47596f7b013327f42c6c5aa44b76fa16d74 100644 (file)
@@ -298,13 +298,14 @@ static inline int tcp_process(struct net_device *dev, struct txq_entry_t *tqe)
 
                if (protocol == 0x06) {
                        u8 *tcp_hdr_ptr;
-                       u32 IHL, Total_Length, Data_offset;
+                       u32 IHL, total_length, Data_offset;
 
                        tcp_hdr_ptr = &ip_hdr_ptr[IP_HDR_LEN];
                        IHL = (ip_hdr_ptr[0] & 0xf) << 2;
-                       Total_Length = (((u32)ip_hdr_ptr[2]) << 8) + ((u32)ip_hdr_ptr[3]);
+                       total_length = ((u32)ip_hdr_ptr[2] << 8) +
+                                       (u32)ip_hdr_ptr[3];
                        Data_offset = (((u32)tcp_hdr_ptr[12] & 0xf0) >> 2);
-                       if (Total_Length == (IHL + Data_offset)) {
+                       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]);