mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
This commit is contained in:
parent
bfd7cd0131
commit
571d92b012
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue