mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
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:
parent
68527b3aad
commit
4e860beeb1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=143419
@ -605,4 +605,5 @@ static moduledata_t sample_mod = {
|
|||||||
};
|
};
|
||||||
DECLARE_MODULE(ath_rate, sample_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
|
DECLARE_MODULE(ath_rate, sample_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
|
||||||
MODULE_VERSION(ath_rate, 1);
|
MODULE_VERSION(ath_rate, 1);
|
||||||
|
MODULE_DEPEND(ath_rate, ath_hal, 1, 1, 1); /* Atheros HAL */
|
||||||
MODULE_DEPEND(ath_rate, wlan, 1, 1, 1);
|
MODULE_DEPEND(ath_rate, wlan, 1, 1, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user