Add missing module dependency.

This commit is contained in:
Shunsuke Akiyama 2003-03-09 11:14:34 +00:00
parent d42ee4e410
commit 5ce609f75b
2 changed files with 2 additions and 0 deletions

View File

@ -185,6 +185,7 @@ Static driver_t uvisor_driver = {
};
DRIVER_MODULE(uvisor, uhub, uvisor_driver, ucom_devclass, usbd_driver_load, 0);
MODULE_DEPEND(uvisor, usb, 1, 1, 1);
MODULE_DEPEND(uvisor, ucom, UCOM_MINVER, UCOM_PREFVER, UCOM_MAXVER);
MODULE_VERSION(uvisor, UVISOR_MODVER);

View File

@ -238,6 +238,7 @@ Static driver_t uvscom_driver = {
};
DRIVER_MODULE(uvscom, uhub, uvscom_driver, ucom_devclass, usbd_driver_load, 0);
MODULE_DEPEND(uvscom, usb, 1, 1, 1);
MODULE_DEPEND(uvscom, ucom, UCOM_MINVER, UCOM_PREFVER, UCOM_MAXVER);
MODULE_VERSION(uvscom, UVSCOM_MODVER);