diff mbox

[03/30] staging: wilc1000: rename WILC_WFI_CfgConnect

Message ID 1441727767-26026-3-git-send-email-chaehyun.lim@gmail.com (mailing list archive)
State Not Applicable
Delegated to: Kalle Valo
Headers show

Commit Message

Chaehyun Lim Sept. 8, 2015, 3:55 p.m. UTC
This patch replaces WILC_WFI_CfgConnect with wilc_cfg80211_connect to
avoid CamelCase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
---
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
index 087f36e..563841f 100644
--- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
+++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
@@ -806,7 +806,7 @@  static int wilc_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request
 }
 
 /**
- *  @brief      WILC_WFI_CfgConnect
+ *  @brief      wilc_cfg80211_connect
  *  @details    Connect to the ESS with the specified parameters. When connected,
  *                      call cfg80211_connect_result() with status code %WLAN_STATUS_SUCCESS.
  *                      If the connection fails for some reason, call cfg80211_connect_result()
@@ -817,7 +817,7 @@  static int wilc_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request
  *  @date	01 MAR 2012
  *  @version	1.0
  */
-static int WILC_WFI_CfgConnect(struct wiphy *wiphy, struct net_device *dev,
+static int wilc_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
 			       struct cfg80211_connect_params *sme)
 {
 	s32 s32Error = WILC_SUCCESS;
@@ -3605,7 +3605,7 @@  static struct cfg80211_ops WILC_WFI_cfg80211_ops = {
 
 	.set_monitor_channel = wilc_cfg80211_set_monitor_channel,
 	.scan = wilc_cfg80211_scan,
-	.connect = WILC_WFI_CfgConnect,
+	.connect = wilc_cfg80211_connect,
 	.disconnect = WILC_WFI_disconnect,
 	.add_key = WILC_WFI_add_key,
 	.del_key = WILC_WFI_del_key,