diff options
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/patch_hdmi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c index 5980552f5970..2d5b83fa8d24 100644 --- a/sound/pci/hda/patch_hdmi.c +++ b/sound/pci/hda/patch_hdmi.c | |||
@@ -850,6 +850,9 @@ static int hdmi_pcm_open(struct hda_pcm_stream *hinfo, | |||
850 | runtime->hw.channels_max = hinfo->channels_max; | 850 | runtime->hw.channels_max = hinfo->channels_max; |
851 | runtime->hw.formats = hinfo->formats; | 851 | runtime->hw.formats = hinfo->formats; |
852 | runtime->hw.rates = hinfo->rates; | 852 | runtime->hw.rates = hinfo->rates; |
853 | |||
854 | snd_pcm_hw_constraint_step(substream->runtime, 0, | ||
855 | SNDRV_PCM_HW_PARAM_CHANNELS, 2); | ||
853 | return 0; | 856 | return 0; |
854 | } | 857 | } |
855 | 858 | ||