aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/aacraid/dpcsup.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/aacraid/dpcsup.c')
-rw-r--r--drivers/scsi/aacraid/dpcsup.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/scsi/aacraid/dpcsup.c b/drivers/scsi/aacraid/dpcsup.c
index e6032ffc66a6..4726ab666c52 100644
--- a/drivers/scsi/aacraid/dpcsup.c
+++ b/drivers/scsi/aacraid/dpcsup.c
@@ -229,11 +229,9 @@ unsigned int aac_command_normal(struct aac_queue *q)
229 * all QE there are and wake up all the waiters before exiting. 229 * all QE there are and wake up all the waiters before exiting.
230 */ 230 */
231 231
232unsigned int aac_intr_normal(struct aac_dev * dev, u32 Index) 232unsigned int aac_intr_normal(struct aac_dev *dev, u32 index)
233{ 233{
234 u32 index = le32_to_cpu(Index); 234 dprintk((KERN_INFO "aac_intr_normal(%p,%x)\n", dev, index));
235
236 dprintk((KERN_INFO "aac_intr_normal(%p,%x)\n", dev, Index));
237 if ((index & 0x00000002L)) { 235 if ((index & 0x00000002L)) {
238 struct hw_fib * hw_fib; 236 struct hw_fib * hw_fib;
239 struct fib * fib; 237 struct fib * fib;
@@ -301,7 +299,7 @@ unsigned int aac_intr_normal(struct aac_dev * dev, u32 Index)
301 299
302 if (hwfib->header.Command == cpu_to_le16(NuFileSystem)) 300 if (hwfib->header.Command == cpu_to_le16(NuFileSystem))
303 { 301 {
304 u32 *pstatus = (u32 *)hwfib->data; 302 __le32 *pstatus = (__le32 *)hwfib->data;
305 if (*pstatus & cpu_to_le32(0xffff0000)) 303 if (*pstatus & cpu_to_le32(0xffff0000))
306 *pstatus = cpu_to_le32(ST_OK); 304 *pstatus = cpu_to_le32(ST_OK);
307 } 305 }