xref: /haiku/src/add-ons/kernel/bus_managers/scsi/scsi.cpp (revision 344ded80d400028c8f561b4b876257b94c12db4a)
1 /*
2  * Copyright 2002/03, Thomas Kurschel. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include "scsi_internal.h"
7 
8 device_manager_info *pnp;
9 
10 module_dependency module_dependencies[] = {
11 	{ B_DEVICE_MANAGER_MODULE_NAME, (module_info **)&pnp },
12 	{}
13 };
14 
15 module_info *modules[] = {
16 	(module_info *)&scsi_for_sim_module,
17 	(module_info *)&scsi_bus_module,
18 	(module_info *)&scsi_device_module,
19 	(module_info *)&gSCSIBusRawModule,
20 	NULL
21 };
22