aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/mpt2sas/mpt2sas_scsih.c
diff options
context:
space:
mode:
authorKashyap, Desai <kashyap.desai@lsi.com>2009-09-23 08:04:13 -0400
committerJames Bottomley <James.Bottomley@suse.de>2009-10-29 13:03:14 -0400
commitec9472c74c3074541ea8389517f406b5c7ad0632 (patch)
treeb9136ed487244020d1df2b04d14030bd318be301 /drivers/scsi/mpt2sas/mpt2sas_scsih.c
parente4e7c7ed3485bc530499158e28539e00d47f9ef2 (diff)
[SCSI] mpt2sas: mpt2sas_base_get_sense_buffer_dma should be returning little endian
cpu_to_le64 when calculating the physical dma address. This will properly handle endianess on big endian systems. The return value of this function was changed from dma_addr_t to __le64. Remove the typecasting of u32 when setting the SenseBufferLowAddress, since its already in __le32 format. Signed-off-by: Kashyap Desai <kashyap.desai@lsi.com> Signed-off-by: Eric Moore <Eric.moore@lsi.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/mpt2sas/mpt2sas_scsih.c')
-rw-r--r--drivers/scsi/mpt2sas/mpt2sas_scsih.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/mpt2sas/mpt2sas_scsih.c b/drivers/scsi/mpt2sas/mpt2sas_scsih.c
index b5531a251be..6f5e2e471b4 100644
--- a/drivers/scsi/mpt2sas/mpt2sas_scsih.c
+++ b/drivers/scsi/mpt2sas/mpt2sas_scsih.c
@@ -2939,7 +2939,7 @@ _scsih_qcmd(struct scsi_cmnd *scmd, void (*done)(struct scsi_cmnd *))
2939 mpi_request->MsgFlags = MPI2_SCSIIO_MSGFLAGS_SYSTEM_SENSE_ADDR; 2939 mpi_request->MsgFlags = MPI2_SCSIIO_MSGFLAGS_SYSTEM_SENSE_ADDR;
2940 mpi_request->SenseBufferLength = SCSI_SENSE_BUFFERSIZE; 2940 mpi_request->SenseBufferLength = SCSI_SENSE_BUFFERSIZE;
2941 mpi_request->SenseBufferLowAddress = 2941 mpi_request->SenseBufferLowAddress =
2942 (u32)mpt2sas_base_get_sense_buffer_dma(ioc, smid); 2942 mpt2sas_base_get_sense_buffer_dma(ioc, smid);
2943 mpi_request->SGLOffset0 = offsetof(Mpi2SCSIIORequest_t, SGL) / 4; 2943 mpi_request->SGLOffset0 = offsetof(Mpi2SCSIIORequest_t, SGL) / 4;
2944 mpi_request->SGLFlags = cpu_to_le16(MPI2_SCSIIO_SGLFLAGS_TYPE_MPI + 2944 mpi_request->SGLFlags = cpu_to_le16(MPI2_SCSIIO_SGLFLAGS_TYPE_MPI +
2945 MPI2_SCSIIO_SGLFLAGS_SYSTEM_ADDR); 2945 MPI2_SCSIIO_SGLFLAGS_SYSTEM_ADDR);