ALSA: msnd: Fix the default sample sizes
[ Upstream commit 7c500f9ea1
]
The default sample sizes set by msnd driver are bogus; it sets ALSA
PCM format, not the actual bit width.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
918cad16b4
Коммит
f402334e5d
|
@ -82,10 +82,10 @@
|
|||
|
||||
static void set_default_audio_parameters(struct snd_msnd *chip)
|
||||
{
|
||||
chip->play_sample_size = DEFSAMPLESIZE;
|
||||
chip->play_sample_size = snd_pcm_format_width(DEFSAMPLESIZE);
|
||||
chip->play_sample_rate = DEFSAMPLERATE;
|
||||
chip->play_channels = DEFCHANNELS;
|
||||
chip->capture_sample_size = DEFSAMPLESIZE;
|
||||
chip->capture_sample_size = snd_pcm_format_width(DEFSAMPLESIZE);
|
||||
chip->capture_sample_rate = DEFSAMPLERATE;
|
||||
chip->capture_channels = DEFCHANNELS;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче