qcacld-3.0: Remove populate_dot11f_wmm_schedule()

Function populate_dot11f_wmm_schedule() is unused, so remove it.

Change-Id: I74d3f38bc5a20dfc102745a44f190e155d83b216
CRs-Fixed: 2370792
This commit is contained in:
Jeff Johnson
2018-12-16 15:19:35 -08:00
parent 0fadd22e56
commit 9bc7982b45
2 changed files with 0 additions and 33 deletions

View File

@@ -938,23 +938,6 @@ void populate_dot11f_wmm_params(struct mac_context *mac,
tDot11fIEWMMParams *pParams,
struct pe_session *pe_session);
/**
* \brief Populate a tDot11fIEWMMSchedule
*
* \sa PopulatedDot11fSchedule
*
*
* \param pSchedule Address of a tSirMacScheduleIE struct
*
* \param pDot11f Address of a tDot11fIEWMMSchedule to be filled in
*
*
*/
void
populate_dot11f_wmm_schedule(tSirMacScheduleIE *pSchedule,
tDot11fIEWMMSchedule *pDot11f);
QDF_STATUS
populate_dot11f_wpa(struct mac_context *mac,
tpSirRSNie pRsnIe, tDot11fIEWPA *pDot11f);

View File

@@ -1899,22 +1899,6 @@ void populate_dot11f_wmm_params(struct mac_context *mac,
} /* End populate_dot11f_wmm_params. */
void populate_dot11f_wmm_schedule(tSirMacScheduleIE *pSchedule,
tDot11fIEWMMSchedule *pDot11f)
{
pDot11f->version = 1;
pDot11f->aggregation = pSchedule->info.aggregation;
pDot11f->tsid = pSchedule->info.tsid;
pDot11f->direction = pSchedule->info.direction;
pDot11f->reserved = pSchedule->info.rsvd;
pDot11f->service_start_time = pSchedule->svcStartTime;
pDot11f->service_interval = pSchedule->svcInterval;
pDot11f->max_service_dur = pSchedule->maxSvcDuration;
pDot11f->spec_interval = pSchedule->specInterval;
pDot11f->present = 1;
} /* End populate_dot11f_wmm_schedule. */
QDF_STATUS
populate_dot11f_wpa(struct mac_context *mac,
tpSirRSNie pRsnIe, tDot11fIEWPA *pDot11f)