diff --git a/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c b/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c index f610575aaf1..69d605f68a7 100644 --- a/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c +++ b/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c @@ -97,6 +97,8 @@ ar5416BTCoexSetWeights(struct ath_hal *ah, u_int32_t stompType) if (AR_SREV_KIWI_10_OR_LATER(ah)) { /* TODO: TX RX separate is not enabled. */ switch (stompType) { + case HAL_BT_COEX_STOMP_AUDIO: + /* XXX TODO */ case HAL_BT_COEX_STOMP_ALL: ahp->ah_btCoexBTWeight = AR5416_BT_WGHT; ahp->ah_btCoexWLANWeight = AR5416_STOMP_ALL_WLAN_WGHT; @@ -128,6 +130,8 @@ ar5416BTCoexSetWeights(struct ath_hal *ah, u_int32_t stompType) } } else { switch (stompType) { + case HAL_BT_COEX_STOMP_AUDIO: + /* XXX TODO */ case HAL_BT_COEX_STOMP_ALL: ahp->ah_btCoexBTWeight = AR5416_BT_WGHT; ahp->ah_btCoexWLANWeight = AR5416_STOMP_ALL_WLAN_WGHT;