svn commit: r305723 - head/sys/contrib/dev/ath/ath_hal/ar9300

Adrian Chadd adrian at FreeBSD.org
Mon Sep 12 04:59:00 UTC 2016


Author: adrian
Date: Mon Sep 12 04:58:59 2016
New Revision: 305723
URL: https://svnweb.freebsd.org/changeset/base/305723

Log:
  [ath_hal] quieten a bit of the boot messages - this stuff has been working for a while.

Modified:
  head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c

Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c
==============================================================================
--- head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c	Mon Sep 12 04:57:58 2016	(r305722)
+++ head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c	Mon Sep 12 04:58:59 2016	(r305723)
@@ -2339,7 +2339,9 @@ ar9300_attach(u_int16_t devid, HAL_SOFTC
     } else {
         ar9300_disable_pcie_phy(ah);
     }
+#if 0
     ath_hal_printf(ah, "%s: calling ar9300_hw_attach\n", __func__);
+#endif
     ecode = ar9300_hw_attach(ah);
     if (ecode != HAL_OK) {
         goto bad;
@@ -3234,7 +3236,9 @@ ar9300_hw_attach(struct ath_hal *ah)
         return HAL_ESELFTEST;
     }
 
+#if 0
     ath_hal_printf(ah, "%s: calling ar9300_eeprom_attach\n", __func__);
+#endif
     ecode = ar9300_eeprom_attach(ah);
     ath_hal_printf(ah, "%s: ar9300_eeprom_attach returned %d\n", __func__, ecode);
     if (ecode != HAL_OK) {


More information about the svn-src-all mailing list