@@ -1710,7 +1710,7 @@ static int wilc_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev
/**
- * @brief WILC_WFI_change_bss
+ * @brief wilc_cfg80211_change_bss
* @details Modify parameters for a given BSS.
* @param[in]
* -use_cts_prot: Whether to use CTS protection
@@ -1730,7 +1730,7 @@ static int wilc_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev
* @date 01 MAR 2012
* @version 1.0
*/
-static int WILC_WFI_change_bss(struct wiphy *wiphy, struct net_device *dev,
+static int wilc_cfg80211_change_bss(struct wiphy *wiphy, struct net_device *dev,
struct bss_parameters *params)
{
PRINT_D(CFG80211_DBG, "Changing Bss parametrs\n");
@@ -3627,7 +3627,7 @@ static struct cfg80211_ops WILC_WFI_cfg80211_ops = {
.get_station = wilc_cfg80211_get_station,
#endif
.dump_station = wilc_cfg80211_dump_station,
- .change_bss = WILC_WFI_change_bss,
+ .change_bss = wilc_cfg80211_change_bss,
.set_wiphy_params = WILC_WFI_set_wiphy_params,
.set_pmksa = WILC_WFI_set_pmksa,
This patch replaces WILC_WFI_change_bss with wilc_cfg80211_change_bss 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(-)