1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

Add explicit dependency on cam. This is necessary when both aha.ko and

cam.ko are modules so that aha.ko's undefined symbols can be satisfied by
cam.ko.

Sumitted by: nork
Reviewed by: scottl
This commit is contained in:
Warner Losh 2006-03-24 06:33:25 +00:00
parent f9c68c6334
commit 4447272cb6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=157085
2 changed files with 2 additions and 0 deletions

View File

@ -374,3 +374,4 @@ static driver_t aha_isa_driver = {
static devclass_t aha_devclass;
DRIVER_MODULE(aha, isa, aha_isa_driver, aha_devclass, 0, 0);
MODULE_DEPEND(aha, cam, 1, 1, 1);

View File

@ -229,3 +229,4 @@ static driver_t aha_mca_driver = {
static devclass_t aha_devclass;
DRIVER_MODULE(aha, mca, aha_mca_driver, aha_devclass, 0, 0);
MODULE_DEPEND(aha, cam, 1, 1, 1);