diff options
author | Laurence Tratt <laurie@tratt.net> | 2020-06-12 12:18:07 +0100 |
---|---|---|
committer | Sasha Levin <sashal@kernel.org> | 2020-06-30 15:36:49 -0400 |
commit | 74a7ad9d975c214a74e1ceddb4d349fd72e04eb7 (patch) | |
tree | 111f0288ca651525a37e30b7b200ef10b49b259c | |
parent | 895ec8c86e13f85b119c71d5f95491b48867955e (diff) | |
download | linux-stable-74a7ad9d975c214a74e1ceddb4d349fd72e04eb7.tar.gz linux-stable-74a7ad9d975c214a74e1ceddb4d349fd72e04eb7.tar.bz2 linux-stable-74a7ad9d975c214a74e1ceddb4d349fd72e04eb7.zip |
ALSA: usb-audio: Add implicit feedback quirk for SSL2+.
commit e7585db1b0b5b4e4eb1967bb1472df308f7ffcbf upstream.
This uses the same quirk as the Motu M2 and M4 to ensure the driver uses the
audio interface's clock. Tested on an SSL2+.
Signed-off-by: Laurence Tratt <laurie@tratt.net>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20200612111807.dgnig6rwhmsl2bod@overdrive.tratt.net
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | sound/usb/pcm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/usb/pcm.c b/sound/usb/pcm.c index c36e6c97d09a..b971d9aaa64a 100644 --- a/sound/usb/pcm.c +++ b/sound/usb/pcm.c @@ -349,6 +349,7 @@ static int set_sync_ep_implicit_fb_quirk(struct snd_usb_substream *subs, ifnum = 0; goto add_sync_ep_from_ifnum; case USB_ID(0x07fd, 0x0008): /* MOTU M Series */ + case USB_ID(0x31e9, 0x0002): /* Solid State Logic SSL2+ */ ep = 0x81; ifnum = 2; goto add_sync_ep_from_ifnum; |