diff --git a/core/wma/inc/wma.h b/core/wma/inc/wma.h index 5d21560263702..c2a295b333618 100644 --- a/core/wma/inc/wma.h +++ b/core/wma/inc/wma.h @@ -2490,7 +2490,7 @@ static inline void wma_print_wmi_mgmt_event_log(uint32_t count, * @wma_handle: pointer to wma handle * @reorder_timeout: rx reorder timeout value * - * Return: VOS_STATUS_SUCCESS for success or error code. + * Return: QDF_STATUS */ QDF_STATUS wma_set_rx_reorder_timeout_val(tp_wma_handle wma_handle, struct sir_set_rx_reorder_timeout_val *reorder_timeout); diff --git a/core/wma/src/wma_features.c b/core/wma/src/wma_features.c index d185dbc28e68d..220d0c5930fc0 100644 --- a/core/wma/src/wma_features.c +++ b/core/wma/src/wma_features.c @@ -4502,7 +4502,7 @@ QDF_STATUS wma_send_apf_read_work_memory_cmd(WMA_HANDLE handle, * * This function sets tx rx aggregation sizes * - * Return: VOS_STATUS_SUCCESS on success, error number otherwise + * Return: QDF_STATUS */ QDF_STATUS wma_set_tx_rx_aggregation_size( struct sir_set_tx_rx_aggregation_size *tx_rx_aggregation_size) diff --git a/core/wma/src/wma_main.c b/core/wma/src/wma_main.c index d427500ccf78d..865d94b7cd67a 100644 --- a/core/wma/src/wma_main.c +++ b/core/wma/src/wma_main.c @@ -7210,7 +7210,7 @@ static QDF_STATUS wma_update_wep_default_key(tp_wma_handle wma, * This function is used to set Tx pkt fail count threshold, * FW will do disconnect with station once this threshold is reached. * - * Return: VOS_STATUS_SUCCESS on success, error number otherwise + * Return: QDF_STATUS */ static QDF_STATUS wma_update_tx_fail_cnt_th(tp_wma_handle wma, struct sme_tx_fail_cnt_threshold *tx_fail_cnt_th) @@ -7249,7 +7249,7 @@ static QDF_STATUS wma_update_tx_fail_cnt_th(tp_wma_handle wma, * This function is used to configure the transmission retry limit at which * short frames needs to be retry. * - * Return: VOS_STATUS_SUCCESS on success, error number otherwise + * Return: QDF_STATUS */ static QDF_STATUS wma_update_short_retry_limit(tp_wma_handle wma, struct sme_short_retry_limit *short_retry_limit_th) @@ -7286,7 +7286,7 @@ static QDF_STATUS wma_update_short_retry_limit(tp_wma_handle wma, * This function is used to configure the transmission retry limit at which * long frames needs to be retry * - * Return: VOS_STATUS_SUCCESS on success, error number otherwise + * Return: QDF_STATUS */ static QDF_STATUS wma_update_long_retry_limit(tp_wma_handle wma, struct sme_long_retry_limit *long_retry_limit_th)