Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7532
b: refs/heads/master
c: e12ba64
h: refs/heads/master
v: v3
  • Loading branch information
viro@ZenIV.linux.org.uk authored and Linus Torvalds committed Sep 8, 2005
1 parent 09a2074 commit 665a1d7
Show file tree
Hide file tree
Showing 3 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: 90dffc03ca8caa0ea047f11c81fe61cd86d80568
refs/heads/master: e12ba644eefa9b8df4f961be91f1a0c5ea5038fa
4 changes: 2 additions & 2 deletions trunk/sound/arm/aaci.c
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ static int __devinit aaci_init_pcm(struct aaci *aaci)

static unsigned int __devinit aaci_size_fifo(struct aaci *aaci)
{
void *base = aaci->base + AACI_CSCH1;
void __iomem *base = aaci->base + AACI_CSCH1;
int i;

writel(TXCR_FEN | TXCR_TSZ16 | TXCR_TXEN, base + AACI_TXCR);
Expand Down Expand Up @@ -877,7 +877,7 @@ static int __devinit aaci_probe(struct amba_device *dev, void *id)
aaci->playback.fifo = aaci->base + AACI_DR1;

for (i = 0; i < 4; i++) {
void *base = aaci->base + i * 0x14;
void __iomem *base = aaci->base + i * 0x14;

writel(0, base + AACI_IE);
writel(0, base + AACI_TXCR);
Expand Down
6 changes: 3 additions & 3 deletions trunk/sound/arm/aaci.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@


struct aaci_runtime {
void *base;
void *fifo;
void __iomem *base;
void __iomem *fifo;

struct ac97_pcm *pcm;
int pcm_open;
Expand All @@ -223,7 +223,7 @@ struct aaci_runtime {
struct aaci {
struct amba_device *dev;
snd_card_t *card;
void *base;
void __iomem *base;
unsigned int fifosize;

/* AC'97 */
Expand Down

0 comments on commit 665a1d7

Please sign in to comment.