diff options
author | Craig McLure <craig@mclure.net> | 2022-05-24 08:21:15 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-06-06 08:43:39 +0200 |
commit | f18aa2fc00bf1794fb2a92169b7fc6575c4cf289 (patch) | |
tree | 16fee7a385f93dd692913e3aa0beac488e2b2597 /sound/usb | |
parent | 8d1f71573089a85db744e14b9daccb1333e19fdc (diff) | |
download | linux-stable-f18aa2fc00bf1794fb2a92169b7fc6575c4cf289.tar.gz linux-stable-f18aa2fc00bf1794fb2a92169b7fc6575c4cf289.tar.bz2 linux-stable-f18aa2fc00bf1794fb2a92169b7fc6575c4cf289.zip |
ALSA: usb-audio: Configure sync endpoints before data
commit 0e85a22d01dfe9ad9a9d9e87cd4a88acce1aad65 upstream.
Devices such as the TC-Helicon GoXLR require the sync endpoint to be
configured in advance of the data endpoint in order for sound output
to work.
This patch simply changes the ordering of EP configuration to resolve
this.
Fixes: bf6313a0ff76 ("ALSA: usb-audio: Refactor endpoint management")
BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=215079
Signed-off-by: Craig McLure <craig@mclure.net>
Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20220524062115.25968-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/pcm.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/sound/usb/pcm.c b/sound/usb/pcm.c index 729e26f5ac4c..9e65a42cc9b7 100644 --- a/sound/usb/pcm.c +++ b/sound/usb/pcm.c @@ -439,16 +439,21 @@ static int configure_endpoints(struct snd_usb_audio *chip, /* stop any running stream beforehand */ if (stop_endpoints(subs, false)) sync_pending_stops(subs); + if (subs->sync_endpoint) { + err = snd_usb_endpoint_configure(chip, subs->sync_endpoint); + if (err < 0) + return err; + } err = snd_usb_endpoint_configure(chip, subs->data_endpoint); if (err < 0) return err; snd_usb_set_format_quirk(subs, subs->cur_audiofmt); - } - - if (subs->sync_endpoint) { - err = snd_usb_endpoint_configure(chip, subs->sync_endpoint); - if (err < 0) - return err; + } else { + if (subs->sync_endpoint) { + err = snd_usb_endpoint_configure(chip, subs->sync_endpoint); + if (err < 0) + return err; + } } return 0; |