Add back in MODULE_DEPEND() lines that were lost in the rev 13 update.

This commit is contained in:
Scott Long 2007-03-12 05:02:42 +00:00
parent 70273f9064
commit d3cf342ddb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=167474

View File

@ -195,6 +195,8 @@ static driver_t arcmsr_driver={
static devclass_t arcmsr_devclass; static devclass_t arcmsr_devclass;
DRIVER_MODULE(arcmsr, pci, arcmsr_driver, arcmsr_devclass, 0, 0); DRIVER_MODULE(arcmsr, pci, arcmsr_driver, arcmsr_devclass, 0, 0);
MODULE_DEPEND(arcmsr, pci, 1, 1, 1);
MODULE_DEPEND(arcmsr, cam, 1, 1, 1);
#ifndef BUS_DMA_COHERENT #ifndef BUS_DMA_COHERENT
#define BUS_DMA_COHERENT 0x04 /* hint: map memory in a coherent way */ #define BUS_DMA_COHERENT 0x04 /* hint: map memory in a coherent way */
#endif #endif