svn commit: r277276 - head/sys/contrib/dev/ath/ath_hal/ar9300

Adrian Chadd adrian at FreeBSD.org
Fri Jan 16 23:48:29 UTC 2015


Author: adrian
Date: Fri Jan 16 23:48:28 2015
New Revision: 277276
URL: https://svnweb.freebsd.org/changeset/base/277276

Log:
  Tie in the MCI bluetooth coexistence functions into the HAL.
  
  Tested:
  
  * AR9462 (WB222)

Modified:
  head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c

Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c
==============================================================================
--- head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c	Fri Jan 16 23:47:42 2015	(r277275)
+++ head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c	Fri Jan 16 23:48:28 2015	(r277276)
@@ -249,6 +249,13 @@ ar9300_attach_freebsd_ops(struct ath_hal
 	ah->ah_btCoexDisable		= ar9300_bt_coex_disable;
 	ah->ah_btCoexEnable		= ar9300_bt_coex_enable;
 
+	/* MCI bluetooth functions */
+	ah->ah_btMciSetup		= ar9300_mci_setup;
+	ah->ah_btMciSendMessage		= ar9300_mci_send_message;
+	ah->ah_btMciGetInterrupt	= ar9300_mci_get_interrupt;
+	ah->ah_btMciGetState		= ar9300_mci_state;
+	ah->ah_btMciDetach		= ar9300_mci_detach;
+
 	/* LNA diversity functions */
 	ah->ah_divLnaConfGet = ar9300_ant_div_comb_get_config;
 	ah->ah_divLnaConfSet = ar9300_ant_div_comb_set_config;


More information about the svn-src-head mailing list