summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradrian <adrian@FreeBSD.org>2012-11-08 23:11:59 +0000
committeradrian <adrian@FreeBSD.org>2012-11-08 23:11:59 +0000
commit41840cb53c49620ab38720341ecd2f8fc6975c98 (patch)
treec435afcf7134cccacca1da9fba1b306e13d96ac1
parent203d15d5232a6eced66bad7f6b56a18d8524dde7 (diff)
downloadFreeBSD-src-41840cb53c49620ab38720341ecd2f8fc6975c98.zip
FreeBSD-src-41840cb53c49620ab38720341ecd2f8fc6975c98.tar.gz
Fix the build - fix up the ath_alq code to not compile by default.
-rw-r--r--sys/dev/ath/if_ath_sysctl.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/sys/dev/ath/if_ath_sysctl.c b/sys/dev/ath/if_ath_sysctl.c
index f293f52..6f6689265 100644
--- a/sys/dev/ath/if_ath_sysctl.c
+++ b/sys/dev/ath/if_ath_sysctl.c
@@ -99,6 +99,10 @@ __FBSDID("$FreeBSD$");
#include <dev/ath/ath_tx99/ath_tx99.h>
#endif
+#ifdef ATH_DEBUG_ALQ
+#include <dev/ath/if_ath_alq.h>
+#endif
+
static int
ath_sysctl_slottime(SYSCTL_HANDLER_ARGS)
{
@@ -502,6 +506,7 @@ ath_sysctl_forcebstuck(SYSCTL_HANDLER_ARGS)
}
+#ifdef ATH_DEBUG_ALQ
static int
ath_sysctl_alq_log(SYSCTL_HANDLER_ARGS)
{
@@ -520,7 +525,6 @@ ath_sysctl_alq_log(SYSCTL_HANDLER_ARGS)
return (error);
}
-#ifdef ATH_DEBUG
/*
* Attach the ALQ debugging if required.
*/
@@ -550,7 +554,7 @@ ath_sysctl_alq_attach(struct ath_softc *sc)
"numlost", CTLFLAG_RW, &sc->sc_alq.sc_alq_numlost, 0,
"number lost");
}
-#endif
+#endif /* ATH_DEBUG_ALQ */
void
ath_sysctlattach(struct ath_softc *sc)
@@ -565,14 +569,14 @@ ath_sysctlattach(struct ath_softc *sc)
SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
"regdomain", CTLFLAG_RD, &sc->sc_eerd, 0,
"EEPROM regdomain code");
-#ifdef ATH_DEBUG
+#ifdef ATH_DEBUG_ALQ
SYSCTL_ADD_QUAD(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
"debug", CTLFLAG_RW, &sc->sc_debug,
"control debugging printfs");
SYSCTL_ADD_QUAD(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
"ktrdebug", CTLFLAG_RW, &sc->sc_ktrdebug,
"control debugging KTR");
-#endif
+#endif /* ATH_DEBUG_ALQ */
SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
"slottime", CTLTYPE_INT | CTLFLAG_RW, sc, 0,
ath_sysctl_slottime, "I", "802.11 slot time (us)");
OpenPOWER on IntegriCloud