From 86a656deb00fc5c65f9e50a0da240025a2492eb8 Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Thu, 29 Jun 2017 03:59:02 +0000 Subject: [PATCH] [ath_hal] if building with ALQ, ensure we actually depend upon ALQ. --- sys/dev/ath/ah_osdep.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/ath/ah_osdep.c b/sys/dev/ath/ah_osdep.c index ecd928c59e8..57e4d194ade 100644 --- a/sys/dev/ath/ah_osdep.c +++ b/sys/dev/ath/ah_osdep.c @@ -449,3 +449,6 @@ ath_hal_modevent(module_t mod __unused, int type, void *data __unused) DEV_MODULE(ath_hal, ath_hal_modevent, NULL); MODULE_VERSION(ath_hal, 1); +#if defined(AH_DEBUG_ALQ) +MODULE_DEPEND(ath_hal, alq, 1, 1, 1); +#endif