]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: rename Enable_TCP_ACK_Filter function
authorLeo Kim <leo.kim@atmel.com>
Fri, 6 Nov 2015 02:12:57 +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 Enable_TCP_ACK_Filter function to enable_tcp_ack_filter
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_wfi_cfgoperations.c
drivers/staging/wilc1000/wilc_wfi_cfgoperations.h
drivers/staging/wilc1000/wilc_wlan.c

index 5291868b70773fdf11fdfa8e75bbfa133e0c14eb..6f405221030cb7376a0d85a8858f1741c72cd8d7 100644 (file)
@@ -1570,9 +1570,9 @@ static int get_station(struct wiphy *wiphy, struct net_device *dev,
 
                if ((strStatistics.link_speed > TCP_ACK_FILTER_LINK_SPEED_THRESH) &&
                    (strStatistics.link_speed != DEFAULT_LINK_SPEED))
-                       Enable_TCP_ACK_Filter(true);
+                       enable_tcp_ack_filter(true);
                else if (strStatistics.link_speed != DEFAULT_LINK_SPEED)
-                       Enable_TCP_ACK_Filter(false);
+                       enable_tcp_ack_filter(false);
 
                PRINT_D(CORECONFIG_DBG, "*** stats[%d][%d][%d][%d][%d]\n", sinfo->signal, sinfo->rx_packets, sinfo->tx_packets,
                        sinfo->tx_failed, sinfo->txrate.legacy);
index 39cd8e1b567567efc8ad161b42a14820a3fcf224..d7bdca1f4c5ba2c5d9fb3b59ec266368d1c0d9cf 100644 (file)
@@ -104,6 +104,6 @@ void wilc_mgmt_frame_register(struct wiphy *wiphy, struct wireless_dev *wdev,
 
 #define TCP_ACK_FILTER_LINK_SPEED_THRESH       54
 #define DEFAULT_LINK_SPEED                     72
-void Enable_TCP_ACK_Filter(bool value);
+void enable_tcp_ack_filter(bool value);
 
 #endif
index 0bfd1bd9aa2f1b37598c40c588fc172726a8f2aa..53c5804dd1721844b908e2481cd517780c7efadc 100644 (file)
@@ -391,7 +391,7 @@ static int wilc_wlan_txq_filter_dup_tcp_ack(struct net_device *dev)
 
 bool enabled = false;
 
-void Enable_TCP_ACK_Filter(bool value)
+void enable_tcp_ack_filter(bool value)
 {
        enabled = value;
 }