From 4e860beeb1e5bb1aaeb8cf9ec7e46585ee57b4c0 Mon Sep 17 00:00:00 2001 From: Tai-hwa Liang Date: Fri, 11 Mar 2005 16:15:43 +0000 Subject: [PATCH] Adding missing module dependency. This should fix the undefined symbol error(ath_hal_computetxtime) during module loading. Reviewed by: sam (mentor) --- sys/dev/ath/ath_rate/sample/sample.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/ath/ath_rate/sample/sample.c b/sys/dev/ath/ath_rate/sample/sample.c index 3bcec991dfc..7c8c72808e3 100644 --- a/sys/dev/ath/ath_rate/sample/sample.c +++ b/sys/dev/ath/ath_rate/sample/sample.c @@ -605,4 +605,5 @@ static moduledata_t sample_mod = { }; DECLARE_MODULE(ath_rate, sample_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST); MODULE_VERSION(ath_rate, 1); +MODULE_DEPEND(ath_rate, ath_hal, 1, 1, 1); /* Atheros HAL */ MODULE_DEPEND(ath_rate, wlan, 1, 1, 1);