scsi-lowlevel: remove scsi_read12_params

Signed-off-by: Arne Redlich <arne.redlich@googlemail.com>
This commit is contained in:
Arne Redlich
2012-11-18 21:37:05 +01:00
parent f955449ecc
commit 17eff2d8d9
2 changed files with 0 additions and 8 deletions
-5
View File
@@ -176,10 +176,6 @@ struct scsi_readtoc_list {
struct scsi_readtoc_desc desc[0]; struct scsi_readtoc_desc desc[0];
}; };
struct scsi_read12_params {
uint32_t lba;
uint32_t num_blocks;
};
struct scsi_read16_params { struct scsi_read16_params {
uint64_t lba; uint64_t lba;
uint32_t num_blocks; uint32_t num_blocks;
@@ -308,7 +304,6 @@ struct scsi_task {
int expxferlen; int expxferlen;
unsigned char cdb[SCSI_CDB_MAX_SIZE]; unsigned char cdb[SCSI_CDB_MAX_SIZE];
union { union {
struct scsi_read12_params read12;
struct scsi_read16_params read16; struct scsi_read16_params read16;
struct scsi_write10_params write10; struct scsi_write10_params write10;
struct scsi_write12_params write12; struct scsi_write12_params write12;
-3
View File
@@ -1110,9 +1110,6 @@ scsi_cdb_read12(uint32_t lba, uint32_t xferlen, int blocksize, int rdprotect, in
} }
task->expxferlen = xferlen; task->expxferlen = xferlen;
task->params.read12.lba = lba;
task->params.read12.num_blocks = xferlen/blocksize;
return task; return task;
} }