diff options
Diffstat (limited to 'sys/pci/if_ste.c')
-rw-r--r-- | sys/pci/if_ste.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/pci/if_ste.c b/sys/pci/if_ste.c index 4b93da0..d6e505b 100644 --- a/sys/pci/if_ste.c +++ b/sys/pci/if_ste.c @@ -72,6 +72,8 @@ __FBSDID("$FreeBSD$"); #include <pci/if_stereg.h> +MODULE_DEPEND(ste, pci, 1, 1, 1); +MODULE_DEPEND(ste, ether, 1, 1, 1); MODULE_DEPEND(ste, miibus, 1, 1, 1); /* @@ -157,7 +159,7 @@ static driver_t ste_driver = { static devclass_t ste_devclass; -DRIVER_MODULE(if_ste, pci, ste_driver, ste_devclass, 0, 0); +DRIVER_MODULE(ste, pci, ste_driver, ste_devclass, 0, 0); DRIVER_MODULE(miibus, ste, miibus_driver, miibus_devclass, 0, 0); #define STE_SETBIT4(sc, reg, x) \ |