Commit e14dc8b6 authored by Jaroslav Kysela's avatar Jaroslav Kysela

ALSA CVS update

ATIIXP-modem driver
Added workaround for buggy BIOS

Force to set MODEM_PRESENT bit for some buggy BIOS which
don't set this bit.
Signed-off-by: default avatarSasha Khapyorsky <sashak@smlink.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 2e8789b0
......@@ -571,6 +571,8 @@ static int snd_atiixp_chip_start(atiixp_t *chip)
/* set up spdif, enable burst mode */
reg = atiixp_read(chip, CMD);
reg |= ATI_REG_CMD_BURST_EN;
if(!(reg & ATI_REG_CMD_MODEM_PRESENT))
reg |= ATI_REG_CMD_MODEM_PRESENT;
atiixp_write(chip, CMD, reg);
/* clear all interrupt source */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment