Commit ca8b3fa7 authored by Wei Yongjun's avatar Wei Yongjun Committed by Greg Kroah-Hartman

staging: most: fix error return code in audio_probe_channel()

Fix to return a negative error code from the audio_set_hw_params() error
handling case instead of 0, as done elsewhere in this function.
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarAndrey Shvetsov <andrey.shvetsov@k2l.de>
Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 264f7b8a
...@@ -607,7 +607,8 @@ static int audio_probe_channel(struct most_interface *iface, int channel_id, ...@@ -607,7 +607,8 @@ static int audio_probe_channel(struct most_interface *iface, int channel_id,
channel->id = channel_id; channel->id = channel_id;
init_waitqueue_head(&channel->playback_waitq); init_waitqueue_head(&channel->playback_waitq);
if (audio_set_hw_params(&channel->pcm_hardware, pcm_format, cfg)) ret = audio_set_hw_params(&channel->pcm_hardware, pcm_format, cfg);
if (ret)
goto err_free_card; goto err_free_card;
snprintf(card->driver, sizeof(card->driver), "%s", DRIVER_NAME); snprintf(card->driver, sizeof(card->driver), "%s", DRIVER_NAME);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment