mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-02 17:26:42 +09:00
staging: wilc1000: rename EnableTCPAckFilter variable
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
442eda4ecb
commit
7c4bafe9e0
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user