Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jun 2016 07:28:36 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r301304 - head/sys/dev/ath/ath_hal/ar5416
Message-ID:  <201606040728.u547Sabi031261@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Sat Jun  4 07:28:36 2016
New Revision: 301304
URL: https://svnweb.freebsd.org/changeset/base/301304

Log:
  [ath_hal] add placeholders for AUDIO stomp for Kite/Kiwi.
  
  It just stomps all; which is enough for some testing.

Modified:
  head/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c	Sat Jun  4 07:28:09 2016	(r301303)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c	Sat Jun  4 07:28:36 2016	(r301304)
@@ -97,6 +97,8 @@ ar5416BTCoexSetWeights(struct ath_hal *a
 	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 *a
 		}
 	} 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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606040728.u547Sabi031261>