These modules depend on usb, make that explicit

Approved by: re@
This commit is contained in:
Warner Losh 2007-06-23 04:34:38 +00:00
parent fbd57cc069
commit 02fb1cf4b9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=170999
2 changed files with 4 additions and 0 deletions

View File

@ -228,6 +228,8 @@ static struct ng_type typestruct = {
DRIVER_MODULE(ubt, uhub, ubt_driver, ubt_devclass, ubt_modevent, 0);
MODULE_VERSION(ng_ubt, NG_BLUETOOTH_VERSION);
MODULE_DEPEND(ng_ubt, netgraph, NG_ABI_VERSION, NG_ABI_VERSION, NG_ABI_VERSION);
MODULE_DEPEND(ubt, usb, 1, 1, 1);
/****************************************************************************
****************************************************************************

View File

@ -131,6 +131,8 @@ static driver_t ubtbcmfw_driver = {
};
static devclass_t ubtbcmfw_devclass;
MODULE_DEPEND(ubtbcmfw, usb, 1, 1, 1);
DRIVER_MODULE(ubtbcmfw, uhub, ubtbcmfw_driver, ubtbcmfw_devclass,
usbd_driver_load, 0);