diff options
| author | Matthew N. Dodd <mdodd@FreeBSD.org> | 2003-04-15 06:37:30 +0000 |
|---|---|---|
| committer | Matthew N. Dodd <mdodd@FreeBSD.org> | 2003-04-15 06:37:30 +0000 |
| commit | f246e4a17fd469ab781124a678e103d44d637c5f (patch) | |
| tree | 1bdd3154994e1ca8f70eb0f16c9b58a107fcc11e /sys/dev/gem | |
| parent | 10646d5f83c7e84f352d3ea4d96caeb6c166859b (diff) | |
Notes
Diffstat (limited to 'sys/dev/gem')
| -rw-r--r-- | sys/dev/gem/if_gem_pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/gem/if_gem_pci.c b/sys/dev/gem/if_gem_pci.c index 30aa02bc4f1f..7c8146ae0a66 100644 --- a/sys/dev/gem/if_gem_pci.c +++ b/sys/dev/gem/if_gem_pci.c @@ -110,7 +110,9 @@ static driver_t gem_pci_driver = { }; -DRIVER_MODULE(if_gem, pci, gem_pci_driver, gem_devclass, 0, 0); +DRIVER_MODULE(gem, pci, gem_pci_driver, gem_devclass, 0, 0); +MODULE_DEPEND(gem, pci, 1, 1, 1); +MODULE_DEPEND(gem, ether, 1, 1, 1); struct gem_pci_dev { u_int32_t gpd_devid; |
