Skip to content

Commit

Permalink
Merge branch 'for-3.0' into for-3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Brown committed Jun 10, 2011
2 parents 2f2b3cf + 3319550 commit 0f28f8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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 0f28f8e

Please sign in to comment.