From owner-svn-src-head@FreeBSD.ORG Fri Jun 14 06:15:23 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A3623F52; Fri, 14 Jun 2013 06:15:23 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 966681321; Fri, 14 Jun 2013 06:15:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5E6FNRl090422; Fri, 14 Jun 2013 06:15:23 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5E6FNf8090421; Fri, 14 Jun 2013 06:15:23 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201306140615.r5E6FNf8090421@svn.freebsd.org> From: Adrian Chadd Date: Fri, 14 Jun 2013 06:15:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r251736 - head/sys/contrib/dev/ath/ath_hal/ar9300 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jun 2013 06:15:23 -0000 Author: adrian Date: Fri Jun 14 06:15:23 2013 New Revision: 251736 URL: http://svnweb.freebsd.org/changeset/base/251736 Log: Add bluetooth setup method functions to the HAL. 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 Jun 14 06:14:49 2013 (r251735) +++ head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c Fri Jun 14 06:15:23 2013 (r251736) @@ -237,6 +237,14 @@ ar9300_attach_freebsd_ops(struct ath_hal /* ah_set11nRxClear */ /* bluetooth coexistence functions */ + ah->ah_btCoexSetInfo = ar9300_set_bt_coex_info; + ah->ah_btCoexSetConfig = ar9300_bt_coex_config; + ah->ah_btCoexSetQcuThresh = ar9300_bt_coex_set_qcu_thresh; + ah->ah_btCoexSetWeights = ar9300_bt_coex_set_weights; + ah->ah_btCoexSetBmissThresh = ar9300_bt_coex_setup_bmiss_thresh; + ah->ah_btCoexSetParameter = ar9300_bt_coex_set_parameter; + ah->ah_btCoexDisable = ar9300_bt_coex_disable; + ah->ah_btCoexEnable = ar9300_bt_coex_enable; /* LNA diversity functions */ ah->ah_divLnaConfGet = ar9300_ant_div_comb_get_config;