Date: Mon, 12 Sep 2016 04:58:59 +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: r305723 - head/sys/contrib/dev/ath/ath_hal/ar9300 Message-ID: <201609120458.u8C4wxPp052744@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609120458.u8C4wxPp052744>