From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nobutaka Okabe Subject: [PATCH] ALSA: usb-audio: Add native DSD support for TEAC UD-301 Date: Fri, 23 Mar 2018 19:49:44 +0900 Message-ID: <20180323104944.6774-1-nob77413@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail-pl0-f68.google.com (mail-pl0-f68.google.com [209.85.160.68]) by alsa0.perex.cz (Postfix) with ESMTP id 422C82673C9 for ; Fri, 23 Mar 2018 11:49:56 +0100 (CET) Received: by mail-pl0-f68.google.com with SMTP id 9-v6so7184659ple.11 for ; Fri, 23 Mar 2018 03:49:56 -0700 (PDT) List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: alsa-devel@alsa-project.org Cc: Nobutaka Okabe List-Id: alsa-devel@alsa-project.org Add native DSD support quirk for TEAC UD-301 DAC, by adding the PID/VID 0644:804a. Signed-off-by: Nobutaka Okabe --- Annotation: This patch should be applied before the "Luxman DA-06" patch set. Previously, I sent this patch to alsa-dev ML, but the status is "pending". So, I send again. sound/usb/quirks.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c index ea8f3de92fa4..794224e1d6df 100644 --- a/sound/usb/quirks.c +++ b/sound/usb/quirks.c @@ -1171,6 +1171,7 @@ static bool is_teac_dsd_dac(unsigned int id) switch (id) { case USB_ID(0x0644, 0x8043): /* TEAC UD-501/UD-503/NT-503 */ case USB_ID(0x0644, 0x8044): /* Esoteric D-05X */ + case USB_ID(0x0644, 0x804a): /* TEAC UD-301 */ return true; } return false; -- 2.11.1