Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 360267
b: refs/heads/master
c: 98f99a8
h: refs/heads/master
i:
  360265: cca467c
  360263: 56cdb52
v: v3
  • Loading branch information
Paul Bolle authored and James Bottomley committed Feb 24, 2013
1 parent d6a0637 commit 05f824d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bcc48ffa4beb0db52bdca42dc3e5ce765c2ed8b5
refs/heads/master: 98f99a8ac8d92fef74b61e8dd25df934afbbf843
4 changes: 2 additions & 2 deletions trunk/drivers/scsi/aacraid/src.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ static int aac_src_deliver_message(struct fib *fib)
fib->hw_fib_va->header.StructType = FIB_MAGIC2;
fib->hw_fib_va->header.SenderFibAddress = (u32)address;
fib->hw_fib_va->header.u.TimeStamp = 0;
BUG_ON((u32)(address >> 32) != 0L);
BUG_ON(upper_32_bits(address) != 0L);
address |= fibsize;
} else {
/* Calculate the amount to the fibsize bits */
Expand All @@ -431,7 +431,7 @@ static int aac_src_deliver_message(struct fib *fib)
address |= fibsize;
}

src_writel(dev, MUnit.IQ_H, (address >> 32) & 0xffffffff);
src_writel(dev, MUnit.IQ_H, upper_32_bits(address) & 0xffffffff);
src_writel(dev, MUnit.IQ_L, address & 0xffffffff);

return 0;
Expand Down

0 comments on commit 05f824d

Please sign in to comment.