linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V3 01/31] staging: wilc1000: rename WILC_WFI_CfgSetChannel
@ 2015-09-14  3:24 Chaehyun Lim
  2015-09-14  3:24 ` [PATCH V3 02/31] staging: wilc1000: rename WILC_WFI_CfgScan Chaehyun Lim
                   ` (29 more replies)
  0 siblings, 30 replies; 32+ messages in thread
From: Chaehyun Lim @ 2015-09-14  3:24 UTC (permalink / raw)
  To: gregkh
  Cc: johnny.kim, rachel.kim, chris.park, tony.cho, glen.lee, leo.kim,
	linux-wireless, devel, Chaehyun Lim

This patch replaces WILC_WFI_CfgSetChannel with set_channel to avoid
CamelCase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
---
V3: remove "wilc_" prefix

 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
index 26412a5..c2060ff 100644
--- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
+++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
@@ -677,7 +677,7 @@ static void CfgConnectResult(tenuConnDisconnEvent enuConnDisconnEvent,
 
 
 /**
- *  @brief      WILC_WFI_CfgSetChannel
+ *  @brief      set_channel
  *  @details    Set channel for a given wireless interface. Some devices
  *                      may support multi-channel operation (by channel hopping) so cfg80211
  *                      doesn't verify much. Note, however, that the passed netdev may be
@@ -689,8 +689,8 @@ static void CfgConnectResult(tenuConnDisconnEvent enuConnDisconnEvent,
  *  @date	01 MAR 2012
  *  @version	1.0
  */
-static int WILC_WFI_CfgSetChannel(struct wiphy *wiphy,
-				  struct cfg80211_chan_def *chandef)
+static int set_channel(struct wiphy *wiphy,
+		       struct cfg80211_chan_def *chandef)
 {
 
 	u32 channelnum = 0;
@@ -3230,7 +3230,7 @@ static int WILC_WFI_start_ap(struct wiphy *wiphy, struct net_device *dev,
 	PRINT_D(HOSTAPD_DBG, "Interval = %d\n DTIM period = %d\n Head length = %zu Tail length = %zu\n",
 		settings->beacon_interval, settings->dtim_period, beacon->head_len, beacon->tail_len);
 
-	s32Error = WILC_WFI_CfgSetChannel(wiphy, &settings->chandef);
+	s32Error = set_channel(wiphy, &settings->chandef);
 
 	if (s32Error != WILC_SUCCESS)
 		PRINT_ER("Error in setting channel\n");
@@ -3558,7 +3558,7 @@ int WILC_WFI_del_virt_intf(struct wiphy *wiphy, struct wireless_dev *wdev)
 #endif /*WILC_AP_EXTERNAL_MLME*/
 static struct cfg80211_ops WILC_WFI_cfg80211_ops = {
 
-	.set_monitor_channel = WILC_WFI_CfgSetChannel,
+	.set_monitor_channel = set_channel,
 	.scan = WILC_WFI_CfgScan,
 	.connect = WILC_WFI_CfgConnect,
 	.disconnect = WILC_WFI_disconnect,
-- 
2.5.1


^ permalink raw reply related	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2015-09-14  4:52 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-14  3:24 [PATCH V3 01/31] staging: wilc1000: rename WILC_WFI_CfgSetChannel Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 02/31] staging: wilc1000: rename WILC_WFI_CfgScan Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 03/31] staging: wilc1000: rename WILC_WFI_CfgConnect Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 04/31] staging: wilc1000: rename WILC_WFI_disconnect Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 05/31] staging: wilc1000: rename WILC_WFI_add_key Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 06/31] staging: wilc1000: rename WILC_WFI_del_key Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 07/31] staging: wilc1000: rename WILC_WFI_get_key Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 08/31] staging: wilc1000: rename WILC_WFI_set_default_key Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 09/31] staging: wilc1000: rename WILC_WFI_add_virt_intf Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 10/31] staging: wilc1000: rename WILC_WFI_del_virt_intf Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 11/31] staging: wilc1000: rename WILC_WFI_change_virt_intf Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 12/31] staging: wilc1000: rename WILC_WFI_start_ap Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 13/31] staging: wilc1000: rename WILC_WFI_change_beacon Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 14/31] staging: wilc1000: rename WILC_WFI_stop_ap Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 15/31] staging: wilc1000: rename WILC_WFI_add_station Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 16/31] staging: wilc1000: rename WILC_WFI_del_station Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 17/31] staging: wilc1000: rename WILC_WFI_change_station Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 18/31] staging: wilc1000: rename WILC_WFI_get_station Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 19/31] staging: wilc1000: rename WILC_WFI_dump_station Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 20/31] staging: wilc1000: rename WILC_WFI_change_bss Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 21/31] staging: wilc1000: rename WILC_WFI_set_wiphy_params Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 22/31] staging: wilc1000: rename WILC_WFI_set_pmksa Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 23/31] staging: wilc1000: rename WILC_WFI_del_pmksa Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 24/31] staging: wilc1000: rename WILC_WFI_flush_pmksa Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 25/31] staging: wilc1000: rename WILC_WFI_remain_on_channel Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 26/31] staging: wilc1000: rename WILC_WFI_cancel_remain_on_channel Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 27/31] staging: wilc1000: rename WILC_WFI_mgmt_tx_cancel_wait Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 28/31] staging: wilc1000: rename WILC_WFI_mgmt_tx Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 29/31] staging: wilc1000: rename WILC_WFI_frame_register Chaehyun Lim
2015-09-14  4:52   ` Greg KH
2015-09-14  3:24 ` [PATCH V3 30/31] staging: wilc1000: rename WILC_WFI_set_power_mgmt Chaehyun Lim
2015-09-14  3:24 ` [PATCH V3 31/31] staging: wilc1000: rename WILC_WFI_set_cqm_rssi_config Chaehyun Lim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).