[patch] [SCSI] arcmsr: upper 32 of dma address lost

2014-02-07 Thread Dan Carpenter
The original code always set the upper 32 bits to zero because it was doing a shift of the wrong variable. Fixes: 1a4f550a09f8 ('[SCSI] arcmsr: 1.20.00.15: add SATA RAID plus other fixes') Signed-off-by: Dan Carpenter dan.carpen...@oracle.com diff --git a/drivers/scsi/arcmsr/arcmsr_hba.c

Re: [patch] [SCSI] arcmsr: upper 32 of dma address lost

2014-02-07 Thread Dan Carpenter
On Fri, Feb 07, 2014 at 04:00:28PM +0300, Dan Carpenter wrote: The original code always set the upper 32 bits to zero because it was doing a shift of the wrong variable. Actually let me redo this. I want to add a cast to prevent a static checker warning on 32 bit systems. Sorry, for the