Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 206688
b: refs/heads/master
c: 2232e23
h: refs/heads/master
v: v3
  • Loading branch information
Kulikov Vasiliy authored and Takashi Iwai committed Jul 26, 2010
1 parent c18f559 commit 3e9311a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 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: ff388f270d926d95d70e5b3d373c9cb97b38c8b1
refs/heads/master: 2232e238295d8ea707fe4271ffbfd4f32346aa81
11 changes: 1 addition & 10 deletions trunk/sound/oss/au1550_ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,19 +163,10 @@ ld2(unsigned int x)
static void
au1550_delay(int msec)
{
unsigned long tmo;
signed long tmo2;

if (in_interrupt())
return;

tmo = jiffies + (msec * HZ) / 1000;
for (;;) {
tmo2 = tmo - jiffies;
if (tmo2 <= 0)
break;
schedule_timeout(tmo2);
}
schedule_timeout_uninterruptible(msecs_to_jiffies(msec));
}

static u16
Expand Down

0 comments on commit 3e9311a

Please sign in to comment.