summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
diff options
context:
space:
mode:
authorLeo Kim2015-11-06 03:12:57 +0100
committerGreg Kroah-Hartman2015-11-16 05:02:47 +0100
commitb9e04aa648fccd5d82067a12bc11359ac8b8b8ee (patch)
treeba7e6ba7c7e9ad2295ef91082d2cd1e509f02887 /drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
parentstaging: wilc1000: rename EnableTCPAckFilter variable (diff)
downloadkernel-qcow2-linux-b9e04aa648fccd5d82067a12bc11359ac8b8b8ee.tar.gz
kernel-qcow2-linux-b9e04aa648fccd5d82067a12bc11359ac8b8b8ee.tar.xz
kernel-qcow2-linux-b9e04aa648fccd5d82067a12bc11359ac8b8b8ee.zip
staging: wilc1000: rename Enable_TCP_ACK_Filter function
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>
Diffstat (limited to 'drivers/staging/wilc1000/wilc_wfi_cfgoperations.c')
-rw-r--r--drivers/staging/wilc1000/wilc_wfi_cfgoperations.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
index 5291868b7077..6f405221030c 100644
--- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
+++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
@@ -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);