diff options
author | avatar <avatar@FreeBSD.org> | 2005-03-11 16:15:43 +0000 |
---|---|---|
committer | avatar <avatar@FreeBSD.org> | 2005-03-11 16:15:43 +0000 |
commit | d34fa887eda805bc4651b65a4f3634f8cae3bb01 (patch) | |
tree | 8641793b16e4a7f89a14db64397ffcd23ab2a51d /sys/dev/ath/ath_rate/sample/sample.c | |
parent | 73402ef817d4020e93dfd36b1763d11dd1fab20e (diff) | |
download | FreeBSD-src-d34fa887eda805bc4651b65a4f3634f8cae3bb01.zip FreeBSD-src-d34fa887eda805bc4651b65a4f3634f8cae3bb01.tar.gz |
Adding missing module dependency. This should fix the undefined symbol
error(ath_hal_computetxtime) during module loading.
Reviewed by: sam (mentor)
Diffstat (limited to 'sys/dev/ath/ath_rate/sample/sample.c')
-rw-r--r-- | sys/dev/ath/ath_rate/sample/sample.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ath/ath_rate/sample/sample.c b/sys/dev/ath/ath_rate/sample/sample.c index 3bcec99..7c8c728 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); |