diff options
author | Jurgen Kramer <gtmkramer@xs4all.nl> | 2014-11-28 11:32:54 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-11-28 12:02:35 -0500 |
commit | 6874daad4b0fbed5b2f9bef7f4d3f2b895463a95 (patch) | |
tree | 2e1306a87375fdd6cb877e5b77b2ff5d44e4813c /sound/usb/pcm.c | |
parent | 7a2e9ddc903225d8fb3a510a842144a239017ee4 (diff) |
ALSA: usb-audio: Add mode select quirk for Denon/Marantz DACs
Denon/Marantz USB DACs need a specific vendor command to switch between PCM and
DSD mode. This patch adds a new quirk function to switch between the two modes
using the specific USB vendor command.
This patch applies to the following devices:
- Marantz SA-14S1
- Marantz HD-DAC1
Signed-off-by: Jurgen Kramer <gtmkramer@xs4all.nl>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/pcm.c')
-rw-r--r-- | sound/usb/pcm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/usb/pcm.c b/sound/usb/pcm.c index c62a1659106d..0d8aba5fe1a8 100644 --- a/sound/usb/pcm.c +++ b/sound/usb/pcm.c | |||
@@ -482,6 +482,11 @@ static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt) | |||
482 | /* set interface */ | 482 | /* set interface */ |
483 | if (subs->interface != fmt->iface || | 483 | if (subs->interface != fmt->iface || |
484 | subs->altset_idx != fmt->altset_idx) { | 484 | subs->altset_idx != fmt->altset_idx) { |
485 | |||
486 | err = snd_usb_select_mode_quirk(subs, fmt); | ||
487 | if (err < 0) | ||
488 | return -EIO; | ||
489 | |||
485 | err = usb_set_interface(dev, fmt->iface, fmt->altsetting); | 490 | err = usb_set_interface(dev, fmt->iface, fmt->altsetting); |
486 | if (err < 0) { | 491 | if (err < 0) { |
487 | dev_err(&dev->dev, | 492 | dev_err(&dev->dev, |