svn commit: r271886 - head/sys/contrib/dev/ath/ath_hal/ar9300
Adrian Chadd
adrian at FreeBSD.org
Sat Sep 20 01:18:36 UTC 2014
Author: adrian
Date: Sat Sep 20 01:18:36 2014
New Revision: 271886
URL: http://svnweb.freebsd.org/changeset/base/271886
Log:
Quieten the AR9300 HAL attach a little - the setupXTxDesc method
is only called during attach now.
The EDMA TX path never calls this - only the legacy TX path does.
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 Sat Sep 20 01:17:02 2014 (r271885)
+++ head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c Sat Sep 20 01:18:36 2014 (r271886)
@@ -468,11 +468,13 @@ ar9300_freebsd_setup_x_tx_desc(struct at
u_int txRate3, u_int txTries3)
{
+#if 0
ath_hal_printf(ah, "%s: called, 0x%x/%d, 0x%x/%d, 0x%x/%d\n",
__func__,
txRate1, txTries1,
txRate2, txTries2,
txRate3, txTries3);
+#endif
/* XXX should only be called during probe */
return (AH_TRUE);
More information about the svn-src-head
mailing list