Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 10370
b: refs/heads/master
c: 9aa36e8
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Jeff Garzik committed Oct 21, 2005
1 parent f98c137 commit 7754d43
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: a9afd7cd2f65ff85f5ffe931beb879ccf12540e0
refs/heads/master: 9aa36e89b5677a98d951cf7bef6d99a0f93ea633
4 changes: 2 additions & 2 deletions trunk/drivers/scsi/sata_sil.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,15 +289,15 @@ static inline unsigned long sil_scr_addr(struct ata_port *ap, unsigned int sc_re

static u32 sil_scr_read (struct ata_port *ap, unsigned int sc_reg)
{
void *mmio = (void *) sil_scr_addr(ap, sc_reg);
void __iomem *mmio = (void __iomem *) sil_scr_addr(ap, sc_reg);
if (mmio)
return readl(mmio);
return 0xffffffffU;
}

static void sil_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
{
void *mmio = (void *) sil_scr_addr(ap, sc_reg);
void *mmio = (void __iomem *) sil_scr_addr(ap, sc_reg);
if (mmio)
writel(val, mmio);
}
Expand Down

0 comments on commit 7754d43

Please sign in to comment.