Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 86176
b: refs/heads/master
c: 7d1abbe
h: refs/heads/master
v: v3
  • Loading branch information
Alan Cox authored and James Bottomley committed Feb 18, 2008
1 parent ef84c70 commit e5210a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: 2939deaab257924c9afd87575dbd9100ae08160d
refs/heads/master: 7d1abbe82434d29dd0d7d69dc0e6acdf25a8c2b5
10 changes: 5 additions & 5 deletions trunk/drivers/scsi/megaraid.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,19 +151,19 @@ mega_setup_mailbox(adapter_t *adapter)
*/
if( adapter->flag & BOARD_IOMAP ) {

outb_p(adapter->mbox_dma & 0xFF,
outb(adapter->mbox_dma & 0xFF,
adapter->host->io_port + MBOX_PORT0);

outb_p((adapter->mbox_dma >> 8) & 0xFF,
outb((adapter->mbox_dma >> 8) & 0xFF,
adapter->host->io_port + MBOX_PORT1);

outb_p((adapter->mbox_dma >> 16) & 0xFF,
outb((adapter->mbox_dma >> 16) & 0xFF,
adapter->host->io_port + MBOX_PORT2);

outb_p((adapter->mbox_dma >> 24) & 0xFF,
outb((adapter->mbox_dma >> 24) & 0xFF,
adapter->host->io_port + MBOX_PORT3);

outb_p(ENABLE_MBOX_BYTE,
outb(ENABLE_MBOX_BYTE,
adapter->host->io_port + ENABLE_MBOX_REGION);

irq_ack(adapter);
Expand Down

0 comments on commit e5210a0

Please sign in to comment.