Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 73045
b: refs/heads/master
c: 2a52e8d
h: refs/heads/master
i:
  73043: c01ce54
v: v3
  • Loading branch information
Jeff Garzik committed Nov 3, 2007
1 parent 348941d commit 531cfd6
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: 9465d5324834f1e99c1343b7bbdc5e6ac8c83f87
refs/heads/master: 2a52e8d4ea86a9143b4c3a1c1ec249a3b8bee74e
4 changes: 2 additions & 2 deletions trunk/drivers/ata/sata_fsl.c
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ static int sata_fsl_scr_write(struct ata_port *ap, unsigned int sc_reg_in,

VPRINTK("xx_scr_write, reg_in = %d\n", sc_reg);

iowrite32(val, (void __iomem *)ssr_base + (sc_reg * 4));
iowrite32(val, ssr_base + (sc_reg * 4));
return 0;
}

Expand All @@ -507,7 +507,7 @@ static int sata_fsl_scr_read(struct ata_port *ap, unsigned int sc_reg_in,

VPRINTK("xx_scr_read, reg_in = %d\n", sc_reg);

*val = ioread32((void __iomem *)ssr_base + (sc_reg * 4));
*val = ioread32(ssr_base + (sc_reg * 4));
return 0;
}

Expand Down

0 comments on commit 531cfd6

Please sign in to comment.