mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-16 12:14:06 +00:00
staging: most: remove audio resolution format check
This patch removes the audio format cross-check, because the definitions are not compatible. Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
35c3372138
commit
48ab5a339d
1 changed files with 1 additions and 2 deletions
|
@ -336,8 +336,7 @@ static int pcm_hw_params(struct snd_pcm_substream *substream,
|
|||
struct channel *channel = substream->private_data;
|
||||
|
||||
if ((params_channels(hw_params) > channel->pcm_hardware.channels_max) ||
|
||||
(params_channels(hw_params) < channel->pcm_hardware.channels_min) ||
|
||||
!(params_format(hw_params) != channel->pcm_hardware.formats))
|
||||
(params_channels(hw_params) < channel->pcm_hardware.channels_min))
|
||||
return -EINVAL;
|
||||
return snd_pcm_lib_alloc_vmalloc_buffer(substream,
|
||||
params_buffer_bytes(hw_params));
|
||||
|
|
Loading…
Add table
Reference in a new issue