svn commit: r229791 - head/sys/dev/ath/ath_hal
Adrian Chadd
adrian at FreeBSD.org
Sat Jan 7 20:23:06 UTC 2012
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
More information about the svn-src-head
mailing list