diff options
Diffstat (limited to 'sound/pci/via82xx.c')
-rw-r--r-- | sound/pci/via82xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/via82xx.c b/sound/pci/via82xx.c index 5faa57956ca9..45d89deb64e5 100644 --- a/sound/pci/via82xx.c +++ b/sound/pci/via82xx.c | |||
@@ -2090,7 +2090,7 @@ static int snd_via82xx_chip_init(struct via82xx *chip) | |||
2090 | pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval); | 2090 | pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval); |
2091 | if (pval & VIA_ACLINK_C00_READY) /* primary codec ready */ | 2091 | if (pval & VIA_ACLINK_C00_READY) /* primary codec ready */ |
2092 | break; | 2092 | break; |
2093 | schedule_timeout(1); | 2093 | schedule_timeout_uninterruptible(1); |
2094 | } while (time_before(jiffies, end_time)); | 2094 | } while (time_before(jiffies, end_time)); |
2095 | 2095 | ||
2096 | if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY) | 2096 | if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY) |
@@ -2109,7 +2109,7 @@ static int snd_via82xx_chip_init(struct via82xx *chip) | |||
2109 | chip->ac97_secondary = 1; | 2109 | chip->ac97_secondary = 1; |
2110 | goto __ac97_ok2; | 2110 | goto __ac97_ok2; |
2111 | } | 2111 | } |
2112 | schedule_timeout(1); | 2112 | schedule_timeout_uninterruptible(1); |
2113 | } while (time_before(jiffies, end_time)); | 2113 | } while (time_before(jiffies, end_time)); |
2114 | /* This is ok, the most of motherboards have only one codec */ | 2114 | /* This is ok, the most of motherboards have only one codec */ |
2115 | 2115 | ||