Skip to content

Commit

Permalink
[ALSA] cs4231-lib: improved waiting after mce_down
Browse files Browse the repository at this point in the history
This patch replaces long msleeps in waiting loops
with schedule_timeout() calls.

Signed-off-by: Krzysztof Helt <krzysztof.h1 at wp.pl>
Signed-off-by: Takashi Iwai <[email protected]>
Signed-off-by: Jaroslav Kysela <[email protected]>
  • Loading branch information
Krzysztof Helt authored and perexg committed Oct 16, 2007
1 parent 503fc85 commit 23d4635
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions sound/isa/cs423x/cs4231_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,26 +343,29 @@ void snd_cs4231_mce_down(struct snd_cs4231 *chip)

snd_printdd("(1) jiffies = %lu\n", jiffies);

/* in 10 ms increments, check condition, up to 250 ms */
timeout = 25;
while (snd_cs4231_in(chip, CS4231_TEST_INIT) & CS4231_CALIB_IN_PROGRESS) {
if (--timeout < 0) {
snd_printk("mce_down - auto calibration time out (2)\n");
/* check condition up to 250 ms */
timeout = msecs_to_jiffies(250);
while (snd_cs4231_in(chip, CS4231_TEST_INIT) &
CS4231_CALIB_IN_PROGRESS) {

if (timeout <= 0) {
snd_printk(KERN_ERR "mce_down - "
"auto calibration time out (2)\n");
return;
}
msleep(10);
timeout = schedule_timeout(timeout);
}

snd_printdd("(2) jiffies = %lu\n", jiffies);

/* in 10 ms increments, check condition, up to 100 ms */
timeout = 10;
/* check condition up to 100 ms */
timeout = msecs_to_jiffies(100);
while (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) {
if (--timeout < 0) {
if (timeout <= 0) {
snd_printk(KERN_ERR "mce_down - auto calibration time out (3)\n");
return;
}
msleep(10);
timeout = schedule_timeout(timeout);
}

snd_printdd("(3) jiffies = %lu\n", jiffies);
Expand Down

0 comments on commit 23d4635

Please sign in to comment.