Adding missing module dependency. This should fix the undefined symbol

error(ath_hal_computetxtime) during module loading.

Reviewed by:	sam (mentor)
This commit is contained in:
Tai-hwa Liang 2005-03-11 16:15:43 +00:00
parent 68527b3aad
commit 4e860beeb1

View File

@ -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);