diff options
author | Kenneth D. Merry <ken@FreeBSD.org> | 2012-03-15 15:43:15 +0000 |
---|---|---|
committer | Kenneth D. Merry <ken@FreeBSD.org> | 2012-03-15 15:43:15 +0000 |
commit | d5e70f8166cf5f1ba60640544b00008aa4dfd9f6 (patch) | |
tree | e25220b09840b9b9b157c4a3d2bc434e1b0cd2c2 | |
parent | f57b9fbbd3558dfad6fee7ffea61726dfc19dd79 (diff) |
Merge r232675 from head, via r232989 in stable/8:
Make the mps(4) module depend on the cam module.
Submitted by: Mykola Dzham <i@levsha.me>
Approved by: re (kib)
Notes
Notes:
svn path=/releng/8.3/; revision=233006
-rw-r--r-- | sys/dev/mps/mps_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/mps/mps_pci.c b/sys/dev/mps/mps_pci.c index f2bdcb0f0b48..3f8739dac0f7 100644 --- a/sys/dev/mps/mps_pci.c +++ b/sys/dev/mps/mps_pci.c @@ -87,6 +87,7 @@ static driver_t mps_pci_driver = { static devclass_t mps_devclass; DRIVER_MODULE(mps, pci, mps_pci_driver, mps_devclass, 0, 0); +MODULE_DEPEND(mps, cam, 1, 1, 1); struct mps_ident { uint16_t vendor; |