Commit b1d19298 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename pu32TxqCount in wilc_wlan_handle_txq function

This patch rename pu32TxqCount to txq_count that is second argument of
wilc_wlan_handle_txq function to avoid camelcase.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1b721bf0
...@@ -695,7 +695,7 @@ void chip_sleep_manually(void) ...@@ -695,7 +695,7 @@ void chip_sleep_manually(void)
release_bus(RELEASE_ONLY); release_bus(RELEASE_ONLY);
} }
int wilc_wlan_handle_txq(struct net_device *dev, u32 *pu32TxqCount) int wilc_wlan_handle_txq(struct net_device *dev, u32 *txq_count)
{ {
wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan; wilc_wlan_dev_t *p = (wilc_wlan_dev_t *)&g_wlan;
int i, entries = 0; int i, entries = 0;
...@@ -949,7 +949,7 @@ int wilc_wlan_handle_txq(struct net_device *dev, u32 *pu32TxqCount) ...@@ -949,7 +949,7 @@ int wilc_wlan_handle_txq(struct net_device *dev, u32 *pu32TxqCount)
p->txq_exit = 1; p->txq_exit = 1;
PRINT_D(TX_DBG, "THREAD: Exiting txq\n"); PRINT_D(TX_DBG, "THREAD: Exiting txq\n");
*pu32TxqCount = p->txq_entries; *txq_count = p->txq_entries;
return ret; return ret;
} }
......
...@@ -300,7 +300,7 @@ int wilc_wlan_start(void); ...@@ -300,7 +300,7 @@ int wilc_wlan_start(void);
int wilc_wlan_stop(void); int wilc_wlan_stop(void);
int wilc_wlan_txq_add_net_pkt(struct net_device *dev, void *priv, u8 *buffer, int wilc_wlan_txq_add_net_pkt(struct net_device *dev, void *priv, u8 *buffer,
u32 buffer_size, wilc_tx_complete_func_t func); u32 buffer_size, wilc_tx_complete_func_t func);
int wilc_wlan_handle_txq(struct net_device *dev, u32 *pu32TxqCount); int wilc_wlan_handle_txq(struct net_device *dev, u32 *txq_count);
void wilc_handle_isr(void *wilc); void wilc_handle_isr(void *wilc);
void wilc_wlan_cleanup(struct net_device *dev); void wilc_wlan_cleanup(struct net_device *dev);
int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size, int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment