staging: wilc1000: rename WILC_WFI_DeInitHostInt
authorChaehyun Lim <chaehyun.lim@gmail.com>
Sun, 20 Sep 2015 06:51:24 +0000 (15:51 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Sep 2015 02:05:09 +0000 (19:05 -0700)
This patch replaces WILC_WFI_DeInitHostInt with wilc_deinit_host_int to
avoid CamelCase.

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

index 7a33543ddcbadfd7ba81ec6be97a57c272ec02c8..6f0a74132e26603db4a9c46eff311d88385ae05e 100644 (file)
@@ -1437,7 +1437,7 @@ int mac_open(struct net_device *ndev)
        ret = wilc1000_wlan_init(ndev, nic);
        if (ret < 0) {
                PRINT_ER("Failed to initialize wilc1000\n");
-               WILC_WFI_DeInitHostInt(ndev);
+               wilc_deinit_host_int(ndev);
                return ret;
        }
 
@@ -1474,7 +1474,7 @@ int mac_open(struct net_device *ndev)
        return 0;
 
 _err_:
-       WILC_WFI_DeInitHostInt(ndev);
+       wilc_deinit_host_int(ndev);
        wilc1000_wlan_deinit(g_linux_wlan);
        return ret;
 }
@@ -1667,7 +1667,7 @@ int mac_close(struct net_device *ndev)
                /* Stop the network interface queue */
                netif_stop_queue(nic->wilc_netdev);
 
-               WILC_WFI_DeInitHostInt(nic->wilc_netdev);
+               wilc_deinit_host_int(nic->wilc_netdev);
        }
 
        if (g_linux_wlan->open_ifcs == 0) {
index 41dd1c3ed88ec993183ba141c80d8123ac3d4ad3..7222359a3839cdd3802abac735989788c0c2704c 100644 (file)
@@ -3642,7 +3642,7 @@ int WILC_WFI_InitHostInt(struct net_device *net)
  *  @date      01 MAR 2012
  *  @version   1.0
  */
-int WILC_WFI_DeInitHostInt(struct net_device *net)
+int wilc_deinit_host_int(struct net_device *net)
 {
        int s32Error = 0;
 
index 579bf2b129b11a59a280fc4534543eaa00f2084e..91856732e2d8258b5b78e05173a23b72e1061846 100644 (file)
@@ -95,7 +95,7 @@ struct wireless_dev *WILC_WFI_CfgAlloc(void);
 struct wireless_dev *wilc_create_wiphy(struct net_device *net);
 void wilc_free_wiphy(struct net_device *net);
 int WILC_WFI_update_stats(struct wiphy *wiphy, u32 pktlen, u8 changed);
-int WILC_WFI_DeInitHostInt(struct net_device *net);
+int wilc_deinit_host_int(struct net_device *net);
 int WILC_WFI_InitHostInt(struct net_device *net);
 void WILC_WFI_monitor_rx(u8 *buff, u32 size);
 int WILC_WFI_deinit_mon_interface(void);