aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/ca0106
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/ca0106')
-rw-r--r--sound/pci/ca0106/ca0106_main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c
index 22d2f6b6a05f..46ae98d9cb49 100644
--- a/sound/pci/ca0106/ca0106_main.c
+++ b/sound/pci/ca0106/ca0106_main.c
@@ -1385,7 +1385,7 @@ static unsigned int spi_dac_init[] = {
1385 SPI_REG(12, 0x00), 1385 SPI_REG(12, 0x00),
1386 SPI_REG(SPI_LDA4_REG, SPI_DA_BIT_0dB), 1386 SPI_REG(SPI_LDA4_REG, SPI_DA_BIT_0dB),
1387 SPI_REG(SPI_RDA4_REG, SPI_DA_BIT_0dB | SPI_DA_BIT_UPDATE), 1387 SPI_REG(SPI_RDA4_REG, SPI_DA_BIT_0dB | SPI_DA_BIT_UPDATE),
1388 SPI_REG(SPI_DACD4_REG, 0x00), 1388 SPI_REG(SPI_DACD4_REG, SPI_DACD4_BIT),
1389}; 1389};
1390 1390
1391static unsigned int i2c_adc_init[][2] = { 1391static unsigned int i2c_adc_init[][2] = {
@@ -1576,6 +1576,9 @@ static void ca0106_init_chip(struct snd_ca0106 *chip, int resume)
1576 if (reg < ARRAY_SIZE(chip->spi_dac_reg)) 1576 if (reg < ARRAY_SIZE(chip->spi_dac_reg))
1577 chip->spi_dac_reg[reg] = spi_dac_init[n]; 1577 chip->spi_dac_reg[reg] = spi_dac_init[n];
1578 } 1578 }
1579
1580 /* Enable front dac only */
1581 snd_ca0106_pcm_power_dac(chip, PCM_FRONT_CHANNEL, 1);
1579 } 1582 }
1580} 1583}
1581 1584