2023-08-03 03:16:29

by dengxiang

[permalink] [raw]
Subject: [PATCH] ALSA: usb-audio: Add support for Mythware XA001AU capture and playback interfaces.

This patch adds a USB quirk for Mythware XA001AU USB interface.

Signed-off-by: dengxiang <[email protected]>
---
sound/usb/quirks-table.h | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)

diff --git a/sound/usb/quirks-table.h b/sound/usb/quirks-table.h
index efb4a3311cc5..5d72dc8441cb 100644
--- a/sound/usb/quirks-table.h
+++ b/sound/usb/quirks-table.h
@@ -4507,6 +4507,35 @@ YAMAHA_DEVICE(0x7010, "UB99"),
}
}
},
+{
+ /* Advanced modes of the Mythware XA001AU.
+ * For the standard mode, Mythware XA001AU has ID ffad:a001
+ */
+ USB_DEVICE_VENDOR_SPEC(0xffad, 0xa001),
+ .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
+ .vendor_name = "Mythware",
+ .product_name = "XA001AU",
+ .ifnum = QUIRK_ANY_INTERFACE,
+ .type = QUIRK_COMPOSITE,
+ .data = (const struct snd_usb_audio_quirk[]) {
+ {
+ .ifnum = 0,
+ .type = QUIRK_IGNORE_INTERFACE,
+ },
+ {
+ .ifnum = 1,
+ .type = QUIRK_AUDIO_STANDARD_INTERFACE,
+ },
+ {
+ .ifnum = 2,
+ .type = QUIRK_AUDIO_STANDARD_INTERFACE,
+ },
+ {
+ .ifnum = -1
+ }
+ }
+ }
+},

#undef USB_DEVICE_VENDOR_SPEC
#undef USB_AUDIO_DEVICE
--
2.30.2



2023-08-04 11:52:21

by Takashi Iwai

[permalink] [raw]
Subject: Re: [PATCH] ALSA: usb-audio: Add support for Mythware XA001AU capture and playback interfaces.

On Thu, 03 Aug 2023 04:44:37 +0200,
dengxiang wrote:
>
> This patch adds a USB quirk for Mythware XA001AU USB interface.
>
> Signed-off-by: dengxiang <[email protected]>

Thanks, applied now.


Takashi

2023-08-04 14:03:02

by dengxiang

[permalink] [raw]
Subject: Re: [PATCH] ALSA: usb-audio: Add support for Mythware XA001AU capture and playback interfaces.

>> This patch adds a USB quirk for Mythware XA001AU USB interface.
>>
>> Signed-off-by: dengxiang

>Thanks, applied now.

Ok, Thank you very much.