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:
parent
f9c68c6334
commit
4447272cb6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=157085
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user