@@ -1932,7 +1932,7 @@ static int wilc_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *netde
}
/**
- * @brief WILC_WFI_del_pmksa
+ * @brief wilc_cfg80211_del_pmksa
* @details Delete a cached PMKID.
* @param[in]
* @return int : Return 0 on Success
@@ -1940,7 +1940,7 @@ static int wilc_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *netde
* @date 01 MAR 2012
* @version 1.0
*/
-static int WILC_WFI_del_pmksa(struct wiphy *wiphy, struct net_device *netdev,
+static int wilc_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *netdev,
struct cfg80211_pmksa *pmksa)
{
@@ -3631,7 +3631,7 @@ static struct cfg80211_ops WILC_WFI_cfg80211_ops = {
.set_wiphy_params = wilc_cfg80211_set_wiphy_params,
.set_pmksa = wilc_cfg80211_set_pmksa,
- .del_pmksa = WILC_WFI_del_pmksa,
+ .del_pmksa = wilc_cfg80211_del_pmksa,
.flush_pmksa = WILC_WFI_flush_pmksa,
#ifdef WILC_P2P
.remain_on_channel = WILC_WFI_remain_on_channel,
This patch replaces WILC_WFI_del_pmksa with wilc_cfg80211_del_pmksa 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(-)