aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mwl/if_mwl_pci.c
diff options
context:
space:
mode:
authorBernhard Schmidt <bschmidt@FreeBSD.org>2010-09-10 08:11:48 +0000
committerBernhard Schmidt <bschmidt@FreeBSD.org>2010-09-10 08:11:48 +0000
commit571d92b0129a3c97419d31ce35fde0342caaea7b (patch)
treea0e0e8fa9bd1074a797cc3422152a6dfc55dc264 /sys/dev/mwl/if_mwl_pci.c
parentbfd7cd013167056f102b8e598f76f1f47fc09bdb (diff)
downloadsrc-571d92b0129a3c97419d31ce35fde0342caaea7b.tar.gz
src-571d92b0129a3c97419d31ce35fde0342caaea7b.zip
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
Notes
Notes: svn path=/head/; revision=212410
Diffstat (limited to 'sys/dev/mwl/if_mwl_pci.c')
-rw-r--r--sys/dev/mwl/if_mwl_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mwl/if_mwl_pci.c b/sys/dev/mwl/if_mwl_pci.c
index 33666d40f12d..d800a5470c25 100644
--- a/sys/dev/mwl/if_mwl_pci.c
+++ b/sys/dev/mwl/if_mwl_pci.c
@@ -313,4 +313,4 @@ static devclass_t mwl_devclass;
DRIVER_MODULE(mwl, pci, mwl_pci_driver, mwl_devclass, 0, 0);
MODULE_VERSION(mwl, 1);
MODULE_DEPEND(mwl, wlan, 1, 1, 1); /* 802.11 media layer */
-MODULE_DEPEND(mwl, mwlfw_fw, 1, 1, 1); /* firmware */
+MODULE_DEPEND(mwl, firmware, 1, 1, 1);