@@ -1403,7 +1403,7 @@ static int wilc_cfg80211_add_key(struct wiphy *wiphy, struct net_device *netdev,
}
/**
- * @brief WILC_WFI_del_key
+ * @brief wilc_cfg80211_del_key
* @details Remove a key given the @mac_addr (%NULL for a group key)
* and @key_index, return -ENOENT if the key doesn't exist.
* @param[in]
@@ -1412,7 +1412,7 @@ static int wilc_cfg80211_add_key(struct wiphy *wiphy, struct net_device *netdev,
* @date 01 MAR 2012
* @version 1.0
*/
-static int WILC_WFI_del_key(struct wiphy *wiphy, struct net_device *netdev,
+static int wilc_cfg80211_del_key(struct wiphy *wiphy, struct net_device *netdev,
u8 key_index,
bool pairwise,
const u8 *mac_addr)
@@ -3608,7 +3608,7 @@ static struct cfg80211_ops WILC_WFI_cfg80211_ops = {
.connect = wilc_cfg80211_connect,
.disconnect = WILC_WFI_disconnect,
.add_key = wilc_cfg80211_add_key,
- .del_key = WILC_WFI_del_key,
+ .del_key = wilc_cfg80211_del_key,
.get_key = WILC_WFI_get_key,
.set_default_key = WILC_WFI_set_default_key,
#ifdef WILC_AP_EXTERNAL_MLME
This patch replaces WILC_WFI_del_key with wilc_cfg80211_del_key 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(-)