[SCSI] Scsi_Cmnd convertion in sun3-driver
Change the obsolete Scsi_Cmnd to struct scsi_cmnd in the sun3-driver. Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
@@ -119,7 +119,7 @@ module_param(setup_use_tagged_queuing, int, 0);
|
||||
static int setup_hostid = -1;
|
||||
module_param(setup_hostid, int, 0);
|
||||
|
||||
static Scsi_Cmnd *sun3_dma_setup_done = NULL;
|
||||
static struct scsi_cmnd *sun3_dma_setup_done = NULL;
|
||||
|
||||
#define AFTER_RESET_DELAY (HZ/2)
|
||||
|
||||
@@ -521,8 +521,9 @@ static inline unsigned long sun3scsi_dma_residual(struct Scsi_Host *instance)
|
||||
return last_residual;
|
||||
}
|
||||
|
||||
static inline unsigned long sun3scsi_dma_xfer_len(unsigned long wanted, Scsi_Cmnd *cmd,
|
||||
int write_flag)
|
||||
static inline unsigned long sun3scsi_dma_xfer_len(unsigned long wanted,
|
||||
struct scsi_cmnd *cmd,
|
||||
int write_flag)
|
||||
{
|
||||
if(blk_fs_request(cmd->request))
|
||||
return wanted;
|
||||
|
Reference in New Issue
Block a user