qcacmn: Add target_if ops init for offhchan txrx

offchan txrx module should query target to know offchan_data_tid
support. Add target_if ops for offchan module to query this.

Change-Id: I8bca8bbaa5c68eb42daf025235b50a5b512d6911
CRs-Fixed: 2145450
This commit is contained in:
Kiran Venkatappa
2017-11-17 17:01:26 +05:30
committed by snandini
부모 1d3e529597
커밋 303c1f655e
2개의 변경된 파일27개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@@ -54,6 +54,9 @@
#ifdef QCA_SUPPORT_SON
#include <target_if_son.h>
#endif
#ifdef WLAN_OFFCHAN_TXRX_ENABLE
#include <target_if_offchan_txrx_api.h>
#endif
static struct target_if_ctx *g_target_if_ctx;
@@ -116,6 +119,13 @@ QDF_STATUS target_if_close(void)
return QDF_STATUS_SUCCESS;
}
#ifndef WLAN_OFFCHAN_TXRX_ENABLE
static void target_if_offchan_txrx_ops_register(
struct wlan_lmac_if_tx_ops *tx_ops)
{
}
#endif /* WLAN_OFFCHAN_TXRX_ENABLE */
#ifndef WLAN_ATF_ENABLE
static void target_if_atf_tx_ops_register(struct wlan_lmac_if_tx_ops *tx_ops)
{
@@ -258,6 +268,8 @@ QDF_STATUS target_if_register_umac_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops)
target_if_target_tx_ops_register(tx_ops);
target_if_offchan_txrx_ops_register(tx_ops);
/* Converged UMAC components to register their TX-ops here */
return QDF_STATUS_SUCCESS;
}