mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 16:30:52 +07:00
[ALSA] intel8x0 - Suppress the codec warnings during probing
Modules: Intel8x0 driver Suppress the codec warnings during probing of codecs. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
b7fe462204
commit
79ba34b941
@ -600,16 +600,19 @@ static int snd_intel8x0_ali_codec_ready(intel8x0_t *chip, int mask)
|
||||
if (val & mask)
|
||||
return 0;
|
||||
}
|
||||
snd_printd(KERN_WARNING "intel8x0: AC97 codec ready timeout.\n");
|
||||
if (! chip->in_ac97_init)
|
||||
snd_printd(KERN_WARNING "intel8x0: AC97 codec ready timeout.\n");
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
static int snd_intel8x0_ali_codec_semaphore(intel8x0_t *chip)
|
||||
{
|
||||
int time = 100;
|
||||
if (chip->buggy_semaphore)
|
||||
return 0; /* just ignore ... */
|
||||
while (time-- && (igetdword(chip, ICHREG(ALI_CAS)) & ALI_CAS_SEM_BUSY))
|
||||
udelay(1);
|
||||
if (! time)
|
||||
if (! time && ! chip->in_ac97_init)
|
||||
snd_printk(KERN_WARNING "ali_codec_semaphore timeout\n");
|
||||
return snd_intel8x0_ali_codec_ready(chip, ALI_CSPSR_CODEC_READY);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user