staging: wilc1000: rename u32count in wilc_setup_multicast_filter
authorChaehyun Lim <chaehyun.lim@gmail.com>
Wed, 30 Dec 2015 12:15:36 +0000 (21:15 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Feb 2016 23:09:44 +0000 (15:09 -0800)
This patch renames u32count to count to remove u32 prefix.
There is no need to use this prefix to show data type of this argument.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c
drivers/staging/wilc1000/host_interface.h

index a32e930e7c53dfb779e591260f7fbe35f4af3079..489ab290af24eaa2cac5671d55ab5e022285a1cb 100644 (file)
@@ -4424,7 +4424,7 @@ int wilc_set_power_mgmt(struct wilc_vif *vif, bool enabled, u32 timeout)
 }
 
 int wilc_setup_multicast_filter(struct wilc_vif *vif, bool enabled,
-                               u32 u32count)
+                               u32 count)
 {
        int result = 0;
        struct host_if_msg msg;
@@ -4444,7 +4444,7 @@ int wilc_setup_multicast_filter(struct wilc_vif *vif, bool enabled,
        msg.vif = vif;
 
        pstrMulticastFilterParam->enabled = enabled;
-       pstrMulticastFilterParam->cnt = u32count;
+       pstrMulticastFilterParam->cnt = count;
 
        result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
        if (result)
index 9abdd3f49946e95baa383afcff9b20856d8ecf7b..5c271b180ca395cc5ca1dd8875a1e7f2acab9edb 100644 (file)
@@ -353,7 +353,7 @@ s32 wilc_edit_station(struct wilc_vif *vif,
                      struct add_sta_param *pstrStaParams);
 int wilc_set_power_mgmt(struct wilc_vif *vif, bool enabled, u32 timeout);
 int wilc_setup_multicast_filter(struct wilc_vif *vif, bool enabled,
-                               u32 u32count);
+                               u32 count);
 s32 wilc_setup_ipaddress(struct wilc_vif *vif, u8 *u16ipadd, u8 idx);
 s32 wilc_del_all_rx_ba_session(struct wilc_vif *vif, char *pBSSID, char TID);
 s32 wilc_remain_on_channel(struct wilc_vif *vif, u32 u32SessionID,
This page took 0.028247 seconds and 5 git commands to generate.