svn commit: r239643 - in head/sys/dev/ath/ath_hal: ar5210 ar5211 ar5212 ar5416

Adrian Chadd adrian at FreeBSD.org
Fri Aug 24 07:35:19 UTC 2012


Author: adrian
Date: Fri Aug 24 07:35:18 2012
New Revision: 239643
URL: http://svn.freebsd.org/changeset/base/239643

Log:
  Add default values for the NumTxMaps capability.

Modified:
  head/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c
  head/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c
  head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c
  head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c

Modified: head/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c	Fri Aug 24 07:32:35 2012	(r239642)
+++ head/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c	Fri Aug 24 07:35:18 2012	(r239643)
@@ -362,6 +362,7 @@ ar5210FillCapabilityInfo(struct ath_hal 
 	pCap->halSleepAfterBeaconBroken = AH_TRUE;
 	pCap->halPSPollBroken = AH_FALSE;
 	pCap->halNumMRRetries = 1;		/* No hardware MRR support */
+	pCap->halNumTxMaps = 1;			/* Single TX ptr per descr */
 
 	pCap->halTotalQueues = HAL_NUM_TX_QUEUES;
 	pCap->halKeyCacheSize = 64;

Modified: head/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c	Fri Aug 24 07:32:35 2012	(r239642)
+++ head/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c	Fri Aug 24 07:35:18 2012	(r239643)
@@ -497,6 +497,7 @@ ar5211FillCapabilityInfo(struct ath_hal 
 	pCap->halPSPollBroken = AH_TRUE;
 	pCap->halVEOLSupport = AH_TRUE;
 	pCap->halNumMRRetries = 1;	/* No hardware MRR support */
+	pCap->halNumTxMaps = 1;		/* Single TX ptr per descr */
 
 	pCap->halTotalQueues = HAL_NUM_TX_QUEUES;
 	pCap->halKeyCacheSize = 128;

Modified: head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c	Fri Aug 24 07:32:35 2012	(r239642)
+++ head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c	Fri Aug 24 07:35:18 2012	(r239643)
@@ -826,6 +826,7 @@ ar5212FillCapabilityInfo(struct ath_hal 
 
 	pCap->halPSPollBroken = AH_TRUE;	/* XXX fixed in later revs? */
 	pCap->halNumMRRetries = 4;		/* Hardware supports 4 MRR */
+	pCap->halNumTxMaps = 1;			/* Single TX ptr per descr */
 	pCap->halVEOLSupport = AH_TRUE;
 	pCap->halBssIdMaskSupport = AH_TRUE;
 	pCap->halMcastKeySrchSupport = AH_TRUE;

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c	Fri Aug 24 07:32:35 2012	(r239642)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c	Fri Aug 24 07:35:18 2012	(r239643)
@@ -894,6 +894,7 @@ ar5416FillCapabilityInfo(struct ath_hal 
 
 	pCap->halPSPollBroken = AH_TRUE;	/* XXX fixed in later revs? */
 	pCap->halNumMRRetries = 4;		/* Hardware supports 4 MRR */
+	pCap->halNumTxMaps = 1;			/* Single TX ptr per descr */
 	pCap->halVEOLSupport = AH_TRUE;
 	pCap->halBssIdMaskSupport = AH_TRUE;
 	pCap->halMcastKeySrchSupport = AH_TRUE;	/* Works on AR5416 and later */


More information about the svn-src-head mailing list