* [PATCH] usb: add native DSD support for Matrix Audio DACs
@ 2014-12-17 16:45 Jurgen Kramer
2014-12-17 16:52 ` Michael Trimarchi
2014-12-17 16:56 ` Takashi Iwai
0 siblings, 2 replies; 3+ messages in thread
From: Jurgen Kramer @ 2014-12-17 16:45 UTC (permalink / raw)
To: tiwai; +Cc: alsa-devel, Jurgen Kramer
This patch adds native DSD support for two XMOS based DACs from Matrix Audio:
- X-Sabre
- Mini-i Pro
Signed-off-by: Jurgen Kramer <gtmkramer@xs4all.nl>
---
sound/usb/quirks.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
index 4dbfb3d..a739841 100644
--- a/sound/usb/quirks.c
+++ b/sound/usb/quirks.c
@@ -1245,8 +1245,9 @@ u64 snd_usb_interface_dsd_format_quirks(struct snd_usb_audio *chip,
/* XMOS based USB DACs */
switch (chip->usb_id) {
- /* iFi Audio micro/nano iDSD */
- case USB_ID(0x20b1, 0x3008):
+ case USB_ID(0x20b1, 0x3008): /* iFi Audio micro/nano iDSD */
+ case USB_ID(0x20b1, 0x2008): /* Matrix Audio X-Sabre */
+ case USB_ID(0x20b1, 0x300a): /* Matrix Audio Mini-i Pro */
if (fp->altsetting == 2)
return SNDRV_PCM_FMTBIT_DSD_U32_BE;
break;
--
1.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] usb: add native DSD support for Matrix Audio DACs
2014-12-17 16:45 [PATCH] usb: add native DSD support for Matrix Audio DACs Jurgen Kramer
@ 2014-12-17 16:52 ` Michael Trimarchi
2014-12-17 16:56 ` Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: Michael Trimarchi @ 2014-12-17 16:52 UTC (permalink / raw)
To: Jurgen Kramer; +Cc: Takashi Iwai, alsa-devel
Hi
Il 18/dic/2014 00:45 "Jurgen Kramer" <gtmkramer@xs4all.nl> ha scritto:
>
> This patch adds native DSD support for two XMOS based DACs from Matrix
Audio:
> - X-Sabre
> - Mini-i Pro
>
> Signed-off-by: Jurgen Kramer <gtmkramer@xs4all.nl>
> ---
> sound/usb/quirks.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
> index 4dbfb3d..a739841 100644
> --- a/sound/usb/quirks.c
> +++ b/sound/usb/quirks.c
> @@ -1245,8 +1245,9 @@ u64 snd_usb_interface_dsd_format_quirks(struct
snd_usb_audio *chip,
>
> /* XMOS based USB DACs */
> switch (chip->usb_id) {
> - /* iFi Audio micro/nano iDSD */
> - case USB_ID(0x20b1, 0x3008):
> + case USB_ID(0x20b1, 0x3008): /* iFi Audio micro/nano iDSD */
> + case USB_ID(0x20b1, 0x2008): /* Matrix Audio X-Sabre */
> + case USB_ID(0x20b1, 0x300a): /* Matrix Audio Mini-i Pro */
You add and change comment style ;)
Michael
> if (fp->altsetting == 2)
> return SNDRV_PCM_FMTBIT_DSD_U32_BE;
> break;
> --
> 1.9.3
>
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] usb: add native DSD support for Matrix Audio DACs
2014-12-17 16:45 [PATCH] usb: add native DSD support for Matrix Audio DACs Jurgen Kramer
2014-12-17 16:52 ` Michael Trimarchi
@ 2014-12-17 16:56 ` Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2014-12-17 16:56 UTC (permalink / raw)
To: Jurgen Kramer; +Cc: alsa-devel
At Wed, 17 Dec 2014 17:45:20 +0100,
Jurgen Kramer wrote:
>
> This patch adds native DSD support for two XMOS based DACs from Matrix Audio:
> - X-Sabre
> - Mini-i Pro
>
> Signed-off-by: Jurgen Kramer <gtmkramer@xs4all.nl>
Applied, thanks.
Takashi
> ---
> sound/usb/quirks.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
> index 4dbfb3d..a739841 100644
> --- a/sound/usb/quirks.c
> +++ b/sound/usb/quirks.c
> @@ -1245,8 +1245,9 @@ u64 snd_usb_interface_dsd_format_quirks(struct snd_usb_audio *chip,
>
> /* XMOS based USB DACs */
> switch (chip->usb_id) {
> - /* iFi Audio micro/nano iDSD */
> - case USB_ID(0x20b1, 0x3008):
> + case USB_ID(0x20b1, 0x3008): /* iFi Audio micro/nano iDSD */
> + case USB_ID(0x20b1, 0x2008): /* Matrix Audio X-Sabre */
> + case USB_ID(0x20b1, 0x300a): /* Matrix Audio Mini-i Pro */
> if (fp->altsetting == 2)
> return SNDRV_PCM_FMTBIT_DSD_U32_BE;
> break;
> --
> 1.9.3
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-12-17 16:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-17 16:45 [PATCH] usb: add native DSD support for Matrix Audio DACs Jurgen Kramer
2014-12-17 16:52 ` Michael Trimarchi
2014-12-17 16:56 ` Takashi Iwai
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.