diff options
| -rw-r--r-- | core/dp/txrx/ol_txrx.c | 2 | ||||
| -rw-r--r-- | core/wma/inc/wma_internal.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/core/dp/txrx/ol_txrx.c b/core/dp/txrx/ol_txrx.c index e4f6c5554100..c43ea2b82182 100644 --- a/core/dp/txrx/ol_txrx.c +++ b/core/dp/txrx/ol_txrx.c @@ -2388,6 +2388,7 @@ ol_txrx_is_rx_fwd_disabled(ol_txrx_vdev_handle vdev) return cfg->rx_fwd_disabled; } +#ifdef QCA_IBSS_SUPPORT /** * ol_txrx_update_ibss_add_peer_num_of_vdev() - update and return peer num * @vdev: vdev handle @@ -2427,6 +2428,7 @@ uint16_t ol_txrx_set_ibss_vdev_heart_beat_timer(ol_txrx_vdev_handle vdev, return old_timer_value; } +#endif /** * ol_txrx_remove_peers_for_vdev() - remove all vdev peers with lock held diff --git a/core/wma/inc/wma_internal.h b/core/wma/inc/wma_internal.h index 11b6d1d40cdd..b5fc9f4eae48 100644 --- a/core/wma/inc/wma_internal.h +++ b/core/wma/inc/wma_internal.h @@ -493,7 +493,7 @@ bool wma_is_vdev_in_ibss_mode(tp_wma_handle wma, uint8_t vdev_id); * Return false since no vdev can be in ibss mode without ibss support */ static inline -bool wma_is_vdev_in_ibss_mode(tp_wma_handle wma, uint8_t vdev_id); +bool wma_is_vdev_in_ibss_mode(tp_wma_handle wma, uint8_t vdev_id) { return false; } |
