mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Have the bcm2835 firmware driver depend on the mailbox driver
The firmware driver uses the mailbox driver to communicate with the firmware. Make this a more formal dependency. Reviewed by: manu Sponsored by: Innovate UK
This commit is contained in:
parent
cd21fc6a4d
commit
feecedb1c6
1 changed files with 3 additions and 2 deletions
|
|
@ -177,5 +177,6 @@ static driver_t bcm2835_firmware_driver = {
|
|||
sizeof(struct bcm2835_firmware_softc),
|
||||
};
|
||||
|
||||
DRIVER_MODULE(bcm2835_firmware, simplebus, bcm2835_firmware_driver,
|
||||
bcm2835_firmware_devclass, 0, 0);
|
||||
EARLY_DRIVER_MODULE(bcm2835_firmware, simplebus, bcm2835_firmware_driver,
|
||||
bcm2835_firmware_devclass, 0, 0, BUS_PASS_INTERRUPT + BUS_PASS_ORDER_LAST);
|
||||
MODULE_DEPEND(bcm2835_firmware, mbox, 1, 1, 1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue