diff options
Diffstat (limited to 'sound/pci/oxygen/oxygen.c')
-rw-r--r-- | sound/pci/oxygen/oxygen.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sound/pci/oxygen/oxygen.c b/sound/pci/oxygen/oxygen.c index 83c6fab425fe..e2dda16d5dcc 100644 --- a/sound/pci/oxygen/oxygen.c +++ b/sound/pci/oxygen/oxygen.c | |||
@@ -256,6 +256,11 @@ static const struct oxygen_model model_generic = { | |||
256 | .update_dac_volume = update_ak4396_volume, | 256 | .update_dac_volume = update_ak4396_volume, |
257 | .update_dac_mute = update_ak4396_mute, | 257 | .update_dac_mute = update_ak4396_mute, |
258 | .dac_tlv = ak4396_db_scale, | 258 | .dac_tlv = ak4396_db_scale, |
259 | .used_channels = OXYGEN_CHANNEL_A | | ||
260 | OXYGEN_CHANNEL_C | | ||
261 | OXYGEN_CHANNEL_SPDIF | | ||
262 | OXYGEN_CHANNEL_MULTICH | | ||
263 | OXYGEN_CHANNEL_AC97, | ||
259 | .function_flags = OXYGEN_FUNCTION_ENABLE_SPI_4_5, | 264 | .function_flags = OXYGEN_FUNCTION_ENABLE_SPI_4_5, |
260 | }; | 265 | }; |
261 | static const struct oxygen_model model_meridian = { | 266 | static const struct oxygen_model model_meridian = { |
@@ -270,7 +275,11 @@ static const struct oxygen_model model_meridian = { | |||
270 | .update_dac_volume = update_ak4396_volume, | 275 | .update_dac_volume = update_ak4396_volume, |
271 | .update_dac_mute = update_ak4396_mute, | 276 | .update_dac_mute = update_ak4396_mute, |
272 | .dac_tlv = ak4396_db_scale, | 277 | .dac_tlv = ak4396_db_scale, |
273 | .record_from_dma_b = 1, | 278 | .used_channels = OXYGEN_CHANNEL_B | |
279 | OXYGEN_CHANNEL_C | | ||
280 | OXYGEN_CHANNEL_SPDIF | | ||
281 | OXYGEN_CHANNEL_MULTICH | | ||
282 | OXYGEN_CHANNEL_AC97, | ||
274 | .function_flags = OXYGEN_FUNCTION_ENABLE_SPI_4_5, | 283 | .function_flags = OXYGEN_FUNCTION_ENABLE_SPI_4_5, |
275 | }; | 284 | }; |
276 | 285 | ||