Loading drivers/scsi/hpsa.c +0 −8 Original line number Diff line number Diff line Loading @@ -2708,14 +2708,6 @@ static void fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h, c->Request.CDB[8] = (size >> 8) & 0xFF; c->Request.CDB[9] = size & 0xFF; break; case HPSA_READ_CAPACITY: c->Request.CDBLen = 10; c->Request.Type.Attribute = ATTR_SIMPLE; c->Request.Type.Direction = XFER_READ; c->Request.Timeout = 0; c->Request.CDB[0] = cmd; break; case HPSA_CACHE_FLUSH: c->Request.CDBLen = 12; c->Request.Type.Attribute = ATTR_SIMPLE; Loading drivers/scsi/hpsa_cmd.h +0 −15 Original line number Diff line number Diff line Loading @@ -152,21 +152,6 @@ struct SenseSubsystem_info { u8 reserved1[1108]; }; #define HPSA_READ_CAPACITY 0x25 /* Read Capacity */ struct ReadCapdata { u8 total_size[4]; /* Total size in blocks */ u8 block_size[4]; /* Size of blocks in bytes */ }; #if 0 /* 12 byte commands not implemented in firmware yet. */ #define HPSA_READ 0xa8 #define HPSA_WRITE 0xaa #endif #define HPSA_READ 0x28 /* Read(10) */ #define HPSA_WRITE 0x2a /* Write(10) */ /* BMIC commands */ #define BMIC_READ 0x26 #define BMIC_WRITE 0x27 Loading Loading
drivers/scsi/hpsa.c +0 −8 Original line number Diff line number Diff line Loading @@ -2708,14 +2708,6 @@ static void fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h, c->Request.CDB[8] = (size >> 8) & 0xFF; c->Request.CDB[9] = size & 0xFF; break; case HPSA_READ_CAPACITY: c->Request.CDBLen = 10; c->Request.Type.Attribute = ATTR_SIMPLE; c->Request.Type.Direction = XFER_READ; c->Request.Timeout = 0; c->Request.CDB[0] = cmd; break; case HPSA_CACHE_FLUSH: c->Request.CDBLen = 12; c->Request.Type.Attribute = ATTR_SIMPLE; Loading
drivers/scsi/hpsa_cmd.h +0 −15 Original line number Diff line number Diff line Loading @@ -152,21 +152,6 @@ struct SenseSubsystem_info { u8 reserved1[1108]; }; #define HPSA_READ_CAPACITY 0x25 /* Read Capacity */ struct ReadCapdata { u8 total_size[4]; /* Total size in blocks */ u8 block_size[4]; /* Size of blocks in bytes */ }; #if 0 /* 12 byte commands not implemented in firmware yet. */ #define HPSA_READ 0xa8 #define HPSA_WRITE 0xaa #endif #define HPSA_READ 0x28 /* Read(10) */ #define HPSA_WRITE 0x2a /* Write(10) */ /* BMIC commands */ #define BMIC_READ 0x26 #define BMIC_WRITE 0x27 Loading