]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: rename pstrHiddenNetwork in wilc_scan
authorChaehyun Lim <chaehyun.lim@gmail.com>
Tue, 5 Jan 2016 14:06:54 +0000 (23:06 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Feb 2016 23:16:26 +0000 (15:16 -0800)
This patch renames pstrHiddenNetwork to hidden_network to avoid
camelcase.

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 56b58d3dd2920133f447b50388c034e086b3ed0d..07fe5c84ce1c0714c6a948a43ea0413a16eaedf5 100644 (file)
@@ -3675,7 +3675,7 @@ int wilc_get_statistics(struct wilc_vif *vif, struct rf_info *stats)
 int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
              u8 *ch_freq_list, u8 ch_list_len, const u8 *ies,
              size_t ies_len, wilc_scan_result scan_result, void *user_arg,
-             struct hidden_network *pstrHiddenNetwork)
+             struct hidden_network *hidden_network)
 {
        int result = 0;
        struct host_if_msg msg;
@@ -3690,12 +3690,12 @@ int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
 
        msg.id = HOST_IF_MSG_SCAN;
 
-       if (pstrHiddenNetwork) {
-               msg.body.scan_info.hidden_network.net_info = pstrHiddenNetwork->net_info;
-               msg.body.scan_info.hidden_network.n_ssids = pstrHiddenNetwork->n_ssids;
+       if (hidden_network) {
+               msg.body.scan_info.hidden_network.net_info = hidden_network->net_info;
+               msg.body.scan_info.hidden_network.n_ssids = hidden_network->n_ssids;
 
        } else
-               PRINT_D(HOSTINF_DBG, "pstrHiddenNetwork IS EQUAL TO NULL\n");
+               PRINT_D(HOSTINF_DBG, "hidden_network IS EQUAL TO NULL\n");
 
        msg.vif = vif;
        msg.body.scan_info.src = scan_source;
index 1923a30937519c0661cfc26ba427de77a3b42968..f8969774a23cc1bb5c92eefc046c4a325206ffb9 100644 (file)
@@ -338,7 +338,7 @@ int wilc_get_rssi(struct wilc_vif *vif, s8 *rssi_level);
 int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
              u8 *ch_freq_list, u8 ch_list_len, const u8 *ies,
              size_t ies_len, wilc_scan_result scan_result, void *user_arg,
-             struct hidden_network *pstrHiddenNetwork);
+             struct hidden_network *hidden_network);
 s32 wilc_hif_set_cfg(struct wilc_vif *vif,
                     struct cfg_param_val *pstrCfgParamVal);
 s32 wilc_init(struct net_device *dev, struct host_if_drv **phWFIDrv);