diff options
author | bschmidt <bschmidt@FreeBSD.org> | 2010-09-10 08:11:48 +0000 |
---|---|---|
committer | bschmidt <bschmidt@FreeBSD.org> | 2010-09-10 08:11:48 +0000 |
commit | 29d60add09b25e3495cf29e778558ec9a5ebd71b (patch) | |
tree | a0e0e8fa9bd1074a797cc3422152a6dfc55dc264 /sys/dev/malo | |
parent | a226dc41a930ffcd71d510f34e479c9c896605b2 (diff) | |
download | FreeBSD-src-29d60add09b25e3495cf29e778558ec9a5ebd71b.zip FreeBSD-src-29d60add09b25e3495cf29e778558ec9a5ebd71b.tar.gz |
Fix firmware module dependencies.
malo and mwl use the firmware framework to access firmware images.
Depending on the firmware modules itself is not required and in this
case even wrong because no modules with those names exist.
Pointed out by: brucec
MFC after: 1 week
Diffstat (limited to 'sys/dev/malo')
-rw-r--r-- | sys/dev/malo/if_malo_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/malo/if_malo_pci.c b/sys/dev/malo/if_malo_pci.c index fbad5ab..65aac7c 100644 --- a/sys/dev/malo/if_malo_pci.c +++ b/sys/dev/malo/if_malo_pci.c @@ -371,4 +371,4 @@ static devclass_t malo_devclass; DRIVER_MODULE(malo, pci, malo_pci_driver, malo_devclass, 0, 0); MODULE_VERSION(malo, 1); MODULE_DEPEND(malo, wlan, 1, 1, 1); /* 802.11 media layer */ -MODULE_DEPEND(malo, malofw_fw, 1, 1, 1); +MODULE_DEPEND(malo, firmware, 1, 1, 1); |