|
@@ -646,7 +646,7 @@ QDF_STATUS sme_qos_close(tpAniSirGlobal pMac)
|
|
|
/**
|
|
|
* sme_qos_setup_req() - The SME QoS API exposed to HDD to request for QoS
|
|
|
* on a particular AC.
|
|
|
- * @hHal: The handle returned by mac_open.
|
|
|
+ * @mac_handle: The handle returned by mac_open.
|
|
|
* @sessionId: sessionId returned by sme_open_session.
|
|
|
* @pQoSInfo: Pointer to struct sme_qos_wmmtspecinfo which contains the
|
|
|
* WMM TSPEC related info as defined above, provided by HDD
|
|
@@ -671,7 +671,8 @@ QDF_STATUS sme_qos_close(tpAniSirGlobal pMac)
|
|
|
* Return: QDF_STATUS_SUCCESS - Setup is successful.
|
|
|
* Other status means Setup request failed
|
|
|
*/
|
|
|
-enum sme_qos_statustype sme_qos_setup_req(mac_handle_t hHal, uint32_t sessionId,
|
|
|
+enum sme_qos_statustype sme_qos_setup_req(mac_handle_t mac_handle,
|
|
|
+ uint32_t sessionId,
|
|
|
struct sme_qos_wmmtspecinfo *pQoSInfo,
|
|
|
sme_QosCallback QoSCallback,
|
|
|
void *HDDcontext,
|
|
@@ -680,7 +681,7 @@ enum sme_qos_statustype sme_qos_setup_req(mac_handle_t hHal, uint32_t sessionId,
|
|
|
{
|
|
|
struct sme_qos_sessioninfo *pSession;
|
|
|
QDF_STATUS lock_status = QDF_STATUS_E_FAILURE;
|
|
|
- tpAniSirGlobal pMac = PMAC_STRUCT(hHal);
|
|
|
+ tpAniSirGlobal pMac = PMAC_STRUCT(mac_handle);
|
|
|
enum sme_qos_statustype status;
|
|
|
|
|
|
QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_DEBUG,
|
|
@@ -733,7 +734,7 @@ enum sme_qos_statustype sme_qos_setup_req(mac_handle_t hHal, uint32_t sessionId,
|
|
|
/**
|
|
|
* sme_qos_modify_req() - The SME QoS API exposed to HDD to request for
|
|
|
* modification of certain QoS params on a flow running on a particular AC.
|
|
|
- * @hHal: The handle returned by mac_open.
|
|
|
+ * @mac_handle: The handle returned by mac_open.
|
|
|
* @pQoSInfo: Pointer to struct sme_qos_wmmtspecinfo which contains the
|
|
|
* WMM TSPEC related info as defined above, provided by HDD
|
|
|
* @QosFlowID: Identification per flow running on each AC generated by
|
|
@@ -749,12 +750,12 @@ enum sme_qos_statustype sme_qos_setup_req(mac_handle_t hHal, uint32_t sessionId,
|
|
|
* Return: SME_QOS_STATUS_SETUP_SUCCESS_RSP - Modification is successful.
|
|
|
* Other status means request failed
|
|
|
*/
|
|
|
-enum sme_qos_statustype sme_qos_modify_req(mac_handle_t hHal,
|
|
|
+enum sme_qos_statustype sme_qos_modify_req(mac_handle_t mac_handle,
|
|
|
struct sme_qos_wmmtspecinfo *pQoSInfo,
|
|
|
uint32_t QosFlowID)
|
|
|
{
|
|
|
QDF_STATUS lock_status = QDF_STATUS_E_FAILURE;
|
|
|
- tpAniSirGlobal pMac = PMAC_STRUCT(hHal);
|
|
|
+ tpAniSirGlobal pMac = PMAC_STRUCT(mac_handle);
|
|
|
enum sme_qos_statustype status;
|
|
|
|
|
|
QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_DEBUG,
|
|
@@ -781,7 +782,7 @@ enum sme_qos_statustype sme_qos_modify_req(mac_handle_t hHal,
|
|
|
* sme_qos_release_req() - The SME QoS API exposed to HDD to request for
|
|
|
* releasing a QoS flow running on a particular AC.
|
|
|
*
|
|
|
- * @hHal: The handle returned by mac_open.
|
|
|
+ * @mac_handle: The handle returned by mac_open.
|
|
|
* @session_id: session_id returned by sme_open_session.
|
|
|
* @QosFlowID: Identification per flow running on each AC generated by SME
|
|
|
* It is only meaningful if the QoS setup for the flow is successful
|
|
@@ -792,12 +793,12 @@ enum sme_qos_statustype sme_qos_modify_req(mac_handle_t hHal,
|
|
|
*
|
|
|
* Return: QDF_STATUS_SUCCESS - Release is successful.
|
|
|
*/
|
|
|
-enum sme_qos_statustype sme_qos_release_req(mac_handle_t hHal,
|
|
|
+enum sme_qos_statustype sme_qos_release_req(mac_handle_t mac_handle,
|
|
|
uint8_t session_id,
|
|
|
uint32_t QosFlowID)
|
|
|
{
|
|
|
QDF_STATUS lock_status = QDF_STATUS_E_FAILURE;
|
|
|
- tpAniSirGlobal pMac = PMAC_STRUCT(hHal);
|
|
|
+ tpAniSirGlobal pMac = PMAC_STRUCT(mac_handle);
|
|
|
enum sme_qos_statustype status;
|
|
|
|
|
|
QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_DEBUG,
|