svn commit: r212410 - in head/sys/dev: malo mwl

[ Available lists | Index of svn-src-all | Month of Sep 2010 | Week of 10 Sep 2010 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Bernhard Schmidt <bschmidt@FreeBSD.org>
Date
10 Sep 2010 08:11:48
Subject
svn commit: r212410 - in head/sys/dev: malo mwl
Message-ID
201009100811.o8A8Bm1B005997@svn.freebsd.org


[ Hide this part ]
Author: bschmidt
Date: Fri Sep 10 08:11:48 2010
New Revision: 212410
URL: http://svn.freebsd.org/changeset/base/212410

Log:
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

Modified:
head/sys/dev/malo/if_malo_pci.c
head/sys/dev/mwl/if_mwl_pci.c

Modified: head/sys/dev/malo/if_malo_pci.c
==============================================================================
--- head/sys/dev/malo/if_malo_pci.c Fri Sep 10 07:06:06 2010 (r212409)
+++ head/sys/dev/malo/if_malo_pci.c Fri Sep 10 08:11:48 2010 (r212410)
@@ -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);

Modified: head/sys/dev/mwl/if_mwl_pci.c
==============================================================================
--- head/sys/dev/mwl/if_mwl_pci.c Fri Sep 10 07:06:06 2010 (r212409)
+++ head/sys/dev/mwl/if_mwl_pci.c Fri Sep 10 08:11:48 2010 (r212410)
@@ -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);

Elapsed time: 0.034 seconds