staging: wilc1000: rename WILC_WFI_InitHostInt

This patch replaces WILC_WFI_InitHostInt with wilc_init_host_int to
avoid CamelCase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Chaehyun Lim 2015-09-20 15:51:25 +09:00 committed by Greg Kroah-Hartman
parent a9a1682344
commit dd4b6a832e
3 changed files with 3 additions and 3 deletions

View file

@ -1425,7 +1425,7 @@ int mac_open(struct net_device *ndev)
priv = wiphy_priv(nic->wilc_netdev->ieee80211_ptr->wiphy);
PRINT_D(INIT_DBG, "MAC OPEN[%p]\n", ndev);
ret = WILC_WFI_InitHostInt(ndev);
ret = wilc_init_host_int(ndev);
if (ret < 0) {
PRINT_ER("Failed to initialize host interface\n");

View file

@ -3600,7 +3600,7 @@ struct wireless_dev *wilc_create_wiphy(struct net_device *net)
* @date 01 MAR 2012
* @version 1.0
*/
int WILC_WFI_InitHostInt(struct net_device *net)
int wilc_init_host_int(struct net_device *net)
{
int s32Error = 0;

View file

@ -96,7 +96,7 @@ 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_deinit_host_int(struct net_device *net);
int WILC_WFI_InitHostInt(struct net_device *net);
int wilc_init_host_int(struct net_device *net);
void WILC_WFI_monitor_rx(u8 *buff, u32 size);
int WILC_WFI_deinit_mon_interface(void);
struct net_device *WILC_WFI_init_mon_interface(const char *name, struct net_device *real_dev);