diff options
author | Matthew N. Dodd <mdodd@FreeBSD.org> | 2003-04-15 06:37:30 +0000 |
---|---|---|
committer | Matthew N. Dodd <mdodd@FreeBSD.org> | 2003-04-15 06:37:30 +0000 |
commit | f246e4a17fd469ab781124a678e103d44d637c5f (patch) | |
tree | 1bdd3154994e1ca8f70eb0f16c9b58a107fcc11e /sys/dev/ar/if_ar_isa.c | |
parent | 10646d5f83c7e84f352d3ea4d96caeb6c166859b (diff) | |
download | src-f246e4a17fd469ab781124a678e103d44d637c5f.tar.gz src-f246e4a17fd469ab781124a678e103d44d637c5f.zip |
- Express hard dependencies on bus (pci, isa, pccard) and
network layer (ether).
- Don't abuse module names to facilitate ifconfig module loading;
such abuse isn't really needed. (And if we do need type information
associated with a module then we should make it explicit and not
use hacks.)
Notes
Notes:
svn path=/head/; revision=113506
Diffstat (limited to 'sys/dev/ar/if_ar_isa.c')
-rw-r--r-- | sys/dev/ar/if_ar_isa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ar/if_ar_isa.c b/sys/dev/ar/if_ar_isa.c index d52535952af8..f4fed809983a 100644 --- a/sys/dev/ar/if_ar_isa.c +++ b/sys/dev/ar/if_ar_isa.c @@ -90,7 +90,8 @@ static driver_t ar_isa_driver = { sizeof (struct ar_hardc) }; -DRIVER_MODULE(if_ar, isa, ar_isa_driver, ar_devclass, 0, 0); +DRIVER_MODULE(ar, isa, ar_isa_driver, ar_devclass, 0, 0); +MODULE_DEPEND(ar, isa, 1, 1, 1); /* * Probe to see if it is there. |