Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 132829
b: refs/heads/master
c: 67137a5
h: refs/heads/master
i:
  132827: 29a81a7
v: v3
  • Loading branch information
Roel Kluin authored and Mark Brown committed Feb 8, 2009
1 parent ceb6243 commit b30beaa
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: 8f0dc655f9efa3fc81b8cdaf5aa1f2779f8db46d
refs/heads/master: 67137a5d46d5a7c4cbdc66f03d1e2f397fe14b2b
4 changes: 2 additions & 2 deletions trunk/sound/soc/blackfin/bf5xx-ad73311.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ static int snd_ad73311_configure(void)
SSYNC();

/* When TUVF is set, the data is already send out */
while (!(status & TUVF) && count++ < 10000) {
while (!(status & TUVF) && ++count < 10000) {
udelay(1);
status = bfin_read_SPORT_STAT();
SSYNC();
Expand All @@ -123,7 +123,7 @@ static int snd_ad73311_configure(void)
SSYNC();
local_irq_enable();

if (count == 10000) {
if (count >= 10000) {
printk(KERN_ERR "ad73311: failed to configure codec\n");
return -1;
}
Expand Down

0 comments on commit b30beaa

Please sign in to comment.