qcacld-3.0: Rename HDD function param ppBeacon
The Linux Coding Style frowns upon mixed-case names and so-called Hungarian notation so rename wlan_hdd_cfg80211_alloc_new_beacon() parameter ppBeacon to be in compliance. Change-Id: If6b9b6d61c5fa6957310bccd1f6c5f0a33a469a6 CRs-Fixed: 2396505
This commit is contained in:
@@ -3818,7 +3818,7 @@ static void wlan_hdd_add_extra_ie(struct hdd_adapter *adapter,
|
|||||||
/**
|
/**
|
||||||
* wlan_hdd_cfg80211_alloc_new_beacon() - alloc beacon in ap mode
|
* wlan_hdd_cfg80211_alloc_new_beacon() - alloc beacon in ap mode
|
||||||
* @adapter: Pointer to hostapd adapter
|
* @adapter: Pointer to hostapd adapter
|
||||||
* @ppBeacon: Pointer to pointer to beacon data
|
* @out_beacon: Location to store newly allocated beacon data
|
||||||
* @params: Pointer to beacon parameters
|
* @params: Pointer to beacon parameters
|
||||||
* @dtim_period: DTIM period
|
* @dtim_period: DTIM period
|
||||||
*
|
*
|
||||||
@@ -3826,7 +3826,7 @@ static void wlan_hdd_add_extra_ie(struct hdd_adapter *adapter,
|
|||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
wlan_hdd_cfg80211_alloc_new_beacon(struct hdd_adapter *adapter,
|
wlan_hdd_cfg80211_alloc_new_beacon(struct hdd_adapter *adapter,
|
||||||
struct hdd_beacon_data **ppBeacon,
|
struct hdd_beacon_data **out_beacon,
|
||||||
struct cfg80211_beacon_data *params,
|
struct cfg80211_beacon_data *params,
|
||||||
int dtim_period)
|
int dtim_period)
|
||||||
{
|
{
|
||||||
@@ -3918,7 +3918,7 @@ wlan_hdd_cfg80211_alloc_new_beacon(struct hdd_adapter *adapter,
|
|||||||
if (assocresp_ies && assocresp_ies_len)
|
if (assocresp_ies && assocresp_ies_len)
|
||||||
memcpy(beacon->assocresp_ies, assocresp_ies, assocresp_ies_len);
|
memcpy(beacon->assocresp_ies, assocresp_ies, assocresp_ies_len);
|
||||||
|
|
||||||
*ppBeacon = beacon;
|
*out_beacon = beacon;
|
||||||
|
|
||||||
adapter->session.ap.beacon = NULL;
|
adapter->session.ap.beacon = NULL;
|
||||||
qdf_mem_free(old);
|
qdf_mem_free(old);
|
||||||
|
Reference in New Issue
Block a user