]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: rename pu32TxqCount in wilc_wlan_handle_txq function
authorLeo Kim <leo.kim@atmel.com>
Fri, 6 Nov 2015 02:13:01 +0000 (11:13 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch rename pu32TxqCount to txq_count that is second argument of
wilc_wlan_handle_txq function to avoid camelcase.

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
drivers/staging/wilc1000/wilc_wlan.h

index 66d5d4267327378bdff9da4bc25e36f3ccf09ca7..cffd7205daeb9860f2be4287556543bcc30ff269 100644 (file)
@@ -695,7 +695,7 @@ void chip_sleep_manually(void)
        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;
        int i, entries = 0;
@@ -949,7 +949,7 @@ _end_:
 
        p->txq_exit = 1;
        PRINT_D(TX_DBG, "THREAD: Exiting txq\n");
-       *pu32TxqCount = p->txq_entries;
+       *txq_count = p->txq_entries;
        return ret;
 }
 
index de2fb7cdd1f4ae59eaca5a04a44b074f321bdaab..1eaac9a9c43cf1bf5bbfcdfbc25badb51cf74899 100644 (file)
@@ -300,7 +300,7 @@ int wilc_wlan_start(void);
 int wilc_wlan_stop(void);
 int wilc_wlan_txq_add_net_pkt(struct net_device *dev, void *priv, u8 *buffer,
                              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_wlan_cleanup(struct net_device *dev);
 int wilc_wlan_cfg_set(int start, u32 wid, u8 *buffer, u32 buffer_size,