]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: rename EnableTCPAckFilter variable
authorLeo Kim <leo.kim@atmel.com>
Fri, 6 Nov 2015 02:12:56 +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 EnableTCPAckFilter variable to enabled
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 283ab521ba18aecb1b5a6b2bdbd0cc5cf22f333b..0bfd1bd9aa2f1b37598c40c588fc172726a8f2aa 100644 (file)
@@ -389,16 +389,16 @@ static int wilc_wlan_txq_filter_dup_tcp_ack(struct net_device *dev)
 }
 #endif
 
-bool EnableTCPAckFilter = false;
+bool enabled = false;
 
 void Enable_TCP_ACK_Filter(bool value)
 {
-       EnableTCPAckFilter = value;
+       enabled = value;
 }
 
 bool is_TCP_ACK_Filter_Enabled(void)
 {
-       return EnableTCPAckFilter;
+       return enabled;
 }
 
 static int wilc_wlan_txq_add_cfg_pkt(u8 *buffer, u32 buffer_size)