diff options
author | Stephen Cameron <stephenmcameron@gmail.com> | 2015-01-23 16:44:30 -0600 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2015-02-02 09:57:43 -0800 |
commit | 7fa3030c655b7479940487b01a20f7332cf68c00 (patch) | |
tree | 47dad4ee150623eeb1dbfa312a212f6b1400ab64 /drivers/scsi/hpsa_cmd.h | |
parent | e345893bd4a8b0a9383a9ce9ff06034da103ad14 (diff) | |
download | linux-7fa3030c655b7479940487b01a20f7332cf68c00.tar.gz |
hpsa: do not use a void pointer for scsi_cmd field of struct CommandList
There's no reason for it to be a void *, it should be a struct scsi_cmnd *
Reviewed-by: Scott Teel <scott.teel@pmcs.com>
Signed-off-by: Don Brace <don.brace@pmcs.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/scsi/hpsa_cmd.h')
-rw-r--r-- | drivers/scsi/hpsa_cmd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/hpsa_cmd.h b/drivers/scsi/hpsa_cmd.h index 071b64c82406..3a621c74b76f 100644 --- a/drivers/scsi/hpsa_cmd.h +++ b/drivers/scsi/hpsa_cmd.h @@ -408,7 +408,7 @@ struct CommandList { int cmd_type; long cmdindex; struct completion *waiting; - void *scsi_cmd; + struct scsi_cmnd *scsi_cmd; struct work_struct work; /* |