xref: /haiku/src/add-ons/kernel/drivers/disk/scsi/scsi_cd/scsi_cd.h (revision 4f00613311d0bd6b70fa82ce19931c41f071ea4e)
1 /*
2  * Copyright 2003, Thomas Kurschel. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 /*
7 	Part of Open SCSI CD Driver
8 
9 	Peripheral driver to handle CD-ROM drives. To be more
10 	precisely, it supports CD-ROM and WORM drives (well -
11 	I've never _seen_ a WORM driver).
12 
13 	Much work is done by scsi_periph and blkdev.
14 */
15 
16 #ifndef _SCSI_CD_H
17 #define _SCSI_CD_H
18 
19 #include <device_manager.h>
20 
21 #define SCSI_CD_MODULE_NAME "drivers/disk/scsi/scsi_cd/device_v1"
22 
23 #endif
24