summaryrefslogtreecommitdiffstats
path: root/sys/dev/an
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2003-02-17 19:57:32 +0000
committerimp <imp@FreeBSD.org>2003-02-17 19:57:32 +0000
commit87f0991c938459aade20df0ca420848ed0714931 (patch)
tree388dba63b1e08ea35ab186d7892b1a27eee8a00f /sys/dev/an
parent11cc0b54e5cc35dbed5851f036b744fdd600bfae (diff)
downloadFreeBSD-src-87f0991c938459aade20df0ca420848ed0714931.zip
FreeBSD-src-87f0991c938459aade20df0ca420848ed0714931.tar.gz
an driver now needs wlan, so put the required explicit depends
into the source. Reviewed by: ambrisko
Diffstat (limited to 'sys/dev/an')
-rw-r--r--sys/dev/an/if_an_isa.c1
-rw-r--r--sys/dev/an/if_an_pccard.c1
-rw-r--r--sys/dev/an/if_an_pci.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/an/if_an_isa.c b/sys/dev/an/if_an_isa.c
index 45fc3b5..de05a84 100644
--- a/sys/dev/an/if_an_isa.c
+++ b/sys/dev/an/if_an_isa.c
@@ -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);
diff --git a/sys/dev/an/if_an_pccard.c b/sys/dev/an/if_an_pccard.c
index a246d6b..95a4c5b 100644
--- a/sys/dev/an/if_an_pccard.c
+++ b/sys/dev/an/if_an_pccard.c
@@ -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),
diff --git a/sys/dev/an/if_an_pci.c b/sys/dev/an/if_an_pci.c
index c219024..466cf56 100644
--- a/sys/dev/an/if_an_pci.c
+++ b/sys/dev/an/if_an_pci.c
@@ -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);
OpenPOWER on IntegriCloud