Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257527
b: refs/heads/master
c: 0f28f8e
h: refs/heads/master
i:
  257525: 6adc109
  257523: c86c005
  257519: 0382240
v: v3
  • Loading branch information
Mark Brown committed Jun 10, 2011
1 parent 74702cb commit ca2cf2d
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: 2f2b3cf1dddf959be127bff39d0e75a52091f93d
refs/heads/master: 0f28f8e567e2fea12fa273e2e904bf3405570553
4 changes: 2 additions & 2 deletions trunk/sound/soc/samsung/i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ static inline bool tx_active(struct i2s_dai *i2s)
if (!i2s)
return false;

active = readl(i2s->addr + I2SMOD);
active = readl(i2s->addr + I2SCON);

if (is_secondary(i2s))
active &= CON_TXSDMA_ACTIVE;
Expand Down Expand Up @@ -223,7 +223,7 @@ static inline bool rx_active(struct i2s_dai *i2s)
if (!i2s)
return false;

active = readl(i2s->addr + I2SMOD) & CON_RXDMA_ACTIVE;
active = readl(i2s->addr + I2SCON) & CON_RXDMA_ACTIVE;

return active ? true : false;
}
Expand Down

0 comments on commit ca2cf2d

Please sign in to comment.