qcacld-3.0: Indicate assoc req to son
Indicate assoc req frame to son Change-Id: Ic5779011cc248ad6fc8b341170b64ac45a1d5a9c CRs-Fixed: 3043011
This commit is contained in:
@@ -63,6 +63,20 @@ QDF_STATUS wlan_son_peer_set_kickout_allow(struct wlan_objmgr_vdev *vdev,
|
||||
bool wlan_son_peer_is_kickout_allow(struct wlan_objmgr_vdev *vdev,
|
||||
uint8_t *macaddr);
|
||||
|
||||
/**
|
||||
* wlan_son_ind_assoc_req_frm() - indicate assoc req frame to son
|
||||
* @vdev: pointer to vdev
|
||||
* @is_reassoc: true if it is reassoc req
|
||||
* @frame: frame body
|
||||
* @frame_len: frame body length
|
||||
* @status: assoc req frame is handled successfully
|
||||
*
|
||||
* Return: Void
|
||||
*/
|
||||
void wlan_son_ind_assoc_req_frm(struct wlan_objmgr_vdev *vdev,
|
||||
uint8_t *macaddr, bool is_reassoc,
|
||||
uint8_t *frame, uint16_t frame_len,
|
||||
QDF_STATUS status);
|
||||
#else
|
||||
|
||||
static inline bool wlan_son_peer_is_kickout_allow(struct wlan_objmgr_vdev *vdev,
|
||||
@@ -70,5 +84,13 @@ static inline bool wlan_son_peer_is_kickout_allow(struct wlan_objmgr_vdev *vdev,
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
static inline
|
||||
void wlan_son_ind_assoc_req_frm(struct wlan_objmgr_vdev *vdev,
|
||||
uint8_t *macaddr, bool is_reassoc,
|
||||
uint8_t *frame, uint16_t frame_len,
|
||||
QDF_STATUS status)
|
||||
{
|
||||
}
|
||||
#endif /*WLAN_FEATURE_SON*/
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user