an driver now needs wlan, so put the required explicit depends

into the source.

Reviewed by: ambrisko
This commit is contained in:
Warner Losh 2003-02-17 19:57:32 +00:00
parent 9dc3de8830
commit 1493e06d04
3 changed files with 3 additions and 0 deletions

View File

@ -165,3 +165,4 @@ static driver_t an_isa_driver = {
static devclass_t an_isa_devclass;
DRIVER_MODULE(if_an, isa, an_isa_driver, an_isa_devclass, 0, 0);
MODULE_DEPEND(if_an, wlan, 1, 1, 1);

View File

@ -110,6 +110,7 @@ static driver_t an_pccard_driver = {
static devclass_t an_pccard_devclass;
DRIVER_MODULE(if_an, pccard, an_pccard_driver, an_pccard_devclass, 0, 0);
MODULE_DEPEND(if_an, wlan, 1, 1, 1);
static const struct pccard_product an_pccard_products[] = {
PCMCIA_CARD(AIRONET, PC4800, 0),

View File

@ -299,3 +299,4 @@ static driver_t an_pci_driver = {
static devclass_t an_devclass;
DRIVER_MODULE(if_an, pci, an_pci_driver, an_devclass, 0, 0);
MODULE_DEPEND(if_an, wlan, 1, 1, 1);