12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #ifdef CONFIG_CISS_SCSI_TAPE
- #ifndef _CCISS_SCSI_H_
- #define _CCISS_SCSI_H_
- #include <scsi/scsicam.h> /* possibly irrelevant, since we don't show disks */
-
- #define SELF_SCSI_ID 15
-
- struct cciss_scsi_dev_t {
- int devtype;
- int bus, target, lun;
- unsigned char scsi3addr[8];
- unsigned char device_id[16];
- unsigned char vendor[8];
- unsigned char model[16];
- unsigned char revision[4];
- };
- struct cciss_scsi_hba_t {
- char *name;
- int ndevices;
- #define CCISS_MAX_SCSI_DEVS_PER_HBA 16
- struct cciss_scsi_dev_t dev[CCISS_MAX_SCSI_DEVS_PER_HBA];
- };
- #endif
- #endif
|