Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Jan 2012 20:23:05 +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: r229791 - head/sys/dev/ath/ath_hal
Message-ID:  <201201072023.q07KN5RK055151@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Sat Jan  7 20:23:05 2012
New Revision: 229791
URL: http://svn.freebsd.org/changeset/base/229791

Log:
  .. the AR5416 HAL code touches the MIMO parts in HAL_CHANNEL,
  so this is also needed.
  
  Pointed out by:	bz

Modified:
  head/sys/dev/ath/ath_hal/ah_desc.h
  head/sys/dev/ath/ath_hal/ah_internal.h

Modified: head/sys/dev/ath/ath_hal/ah_desc.h
==============================================================================
--- head/sys/dev/ath/ath_hal/ah_desc.h	Sat Jan  7 20:13:55 2012	(r229790)
+++ head/sys/dev/ath/ath_hal/ah_desc.h	Sat Jan  7 20:23:05 2012	(r229791)
@@ -31,7 +31,9 @@
  * they'll be initialised to 0 anyway.
  */
 
+#ifndef	AH_SUPPORT_AR5416
 #define	AH_SUPPORT_AR5416	1
+#endif
 
 /*
  * Transmit descriptor status.  This structure is filled

Modified: head/sys/dev/ath/ath_hal/ah_internal.h
==============================================================================
--- head/sys/dev/ath/ath_hal/ah_internal.h	Sat Jan  7 20:13:55 2012	(r229790)
+++ head/sys/dev/ath/ath_hal/ah_internal.h	Sat Jan  7 20:23:05 2012	(r229791)
@@ -30,6 +30,10 @@
 #include <net80211/_ieee80211.h>
 #include "opt_ah.h"			/* needed for AH_SUPPORT_AR5416 */
 
+#ifndef	AH_SUPPORT_AR5416
+#define	AH_SUPPORT_AR5416	1
+#endif
+
 #ifndef NBBY
 #define	NBBY	8			/* number of bits/byte */
 #endif



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