Changeset 63 for trunk/src/os2ahci/atapi.h
- Timestamp:
- Dec 18, 2010, 3:10:02 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/atapi.h
r62 r63 120 120 * ATAPI_CDB_10 - describes layout of generic 10 byte ATAPI command 121 121 */ 122 typedef struct _ATAPI_C MD_10 {122 typedef struct _ATAPI_CDB_10 { 123 123 u8 cmd; /* SCSI/ATAPI command code */ 124 124 u8 flags; /* flags (DPO, FUA) */ … … 131 131 * ATAPI_CDB_12 - describes layout of generic 12 byte ATAPI command 132 132 */ 133 typedef struct _ATAPI_C MD_12 {133 typedef struct _ATAPI_CDB_12 { 134 134 u8 cmd; /* SCSI/ATAPI command code */ 135 135 u8 flags; /* flags (DPO, FUA) */ … … 141 141 142 142 /******************************************************************************Ã 143 * ATAPI_CDB_ REQ_SENSE - describes request sensecommand143 * ATAPI_CDB_6 - describes 6 byte ATAPI command 144 144 */ 145 typedef struct _ATAPI_C MD_REQ_SENSE{146 u8 cmd; /* command code (0x03)*/145 typedef struct _ATAPI_CDB_6 { 146 u8 cmd; /* command code */ 147 147 u8 lun; /* SCSI lun (ignored) */ 148 148 u8 resvd[2]; 149 u8 buffer_len; /* sense buffer length */149 u8 trans_len; /* trasnfer length */ 150 150 u8 control; 151 } ATAPI_CDB_ REQ_SENSE;151 } ATAPI_CDB_6; 152 152 153 153
Note:
See TracChangeset
for help on using the changeset viewer.