diff mbox series

ALSA: usb-audio: Add implicit feeback support for the BOSS GT-1

Message ID 20201221215533.2511-1-oliphant@nostatic.org
State Accepted
Commit 43877226829eda91856b055d217b3033805fd76f
Headers show
Series ALSA: usb-audio: Add implicit feeback support for the BOSS GT-1 | expand

Commit Message

Mike Oliphant Dec. 21, 2020, 9:55 p.m. UTC
The BOSS GT-1 (USB ID 0582:01d6) requires implicit feedback
like other similar BOSS devices. This patch adds this support.

Signed-off-by: Mike Oliphant <oliphant@nostatic.org>
---
 sound/usb/implicit.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/sound/usb/implicit.c b/sound/usb/implicit.c
index 4e911d200..d44997e49 100644
--- a/sound/usb/implicit.c
+++ b/sound/usb/implicit.c
@@ -77,6 +77,7 @@  static const struct snd_usb_implicit_fb_match playback_implicit_fb_quirks[] = {
 	IMPLICIT_FB_SKIP_DEV(0x0582, 0x0189),	/* BOSS GT-100v2 */
 	IMPLICIT_FB_SKIP_DEV(0x0582, 0x01d8),	/* BOSS Katana */
 	IMPLICIT_FB_SKIP_DEV(0x0582, 0x01e5),	/* BOSS GT-001 */
+	IMPLICIT_FB_SKIP_DEV(0x0582, 0x01d6),	/* BOSS GT-1 */
 
 	{} /* terminator */
 };
@@ -87,6 +88,7 @@  static const struct snd_usb_implicit_fb_match capture_implicit_fb_quirks[] = {
 	IMPLICIT_FB_FIXED_DEV(0x0582, 0x0189, 0x0d, 0x01), /* BOSS GT-100v2 */
 	IMPLICIT_FB_FIXED_DEV(0x0582, 0x01d8, 0x0d, 0x01), /* BOSS Katana */
 	IMPLICIT_FB_FIXED_DEV(0x0582, 0x01e5, 0x0d, 0x01), /* BOSS GT-001 */
+	IMPLICIT_FB_FIXED_DEV(0x0582, 0x01d6, 0x0d, 0x01), /* BOSS GT-1 */
 
 	{} /* terminator */
 };