mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
staging: wilc1000: rename WILC_WFI_del_pmksa
This patch replaces WILC_WFI_del_pmksa with del_pmksa to avoid CamelCase. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4d46657a23
commit
1ff86d9605
1 changed files with 4 additions and 4 deletions
|
@ -1932,7 +1932,7 @@ static int set_pmksa(struct wiphy *wiphy, struct net_device *netdev,
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief WILC_WFI_del_pmksa
|
* @brief del_pmksa
|
||||||
* @details Delete a cached PMKID.
|
* @details Delete a cached PMKID.
|
||||||
* @param[in]
|
* @param[in]
|
||||||
* @return int : Return 0 on Success
|
* @return int : Return 0 on Success
|
||||||
|
@ -1940,8 +1940,8 @@ static int set_pmksa(struct wiphy *wiphy, struct net_device *netdev,
|
||||||
* @date 01 MAR 2012
|
* @date 01 MAR 2012
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
static int WILC_WFI_del_pmksa(struct wiphy *wiphy, struct net_device *netdev,
|
static int del_pmksa(struct wiphy *wiphy, struct net_device *netdev,
|
||||||
struct cfg80211_pmksa *pmksa)
|
struct cfg80211_pmksa *pmksa)
|
||||||
{
|
{
|
||||||
|
|
||||||
u32 i;
|
u32 i;
|
||||||
|
@ -3584,7 +3584,7 @@ static struct cfg80211_ops WILC_WFI_cfg80211_ops = {
|
||||||
.set_wiphy_params = set_wiphy_params,
|
.set_wiphy_params = set_wiphy_params,
|
||||||
|
|
||||||
.set_pmksa = set_pmksa,
|
.set_pmksa = set_pmksa,
|
||||||
.del_pmksa = WILC_WFI_del_pmksa,
|
.del_pmksa = del_pmksa,
|
||||||
.flush_pmksa = WILC_WFI_flush_pmksa,
|
.flush_pmksa = WILC_WFI_flush_pmksa,
|
||||||
#ifdef WILC_P2P
|
#ifdef WILC_P2P
|
||||||
.remain_on_channel = WILC_WFI_remain_on_channel,
|
.remain_on_channel = WILC_WFI_remain_on_channel,
|
||||||
|
|
Loading…
Add table
Reference in a new issue