From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0256EC4360C for ; Sun, 29 Sep 2019 14:04:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BDCB421835 for ; Sun, 29 Sep 2019 14:04:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1569765864; bh=oSbyScY3JG+rW4fllK50xPf1ze1Tix7f6EevJu/txV0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=nSu+vItJMfCkFTVNrGHvpApmVjDUav8uCDamQ2q42Z4IXT8zIbWF2nGpBvKr/msk3 yRcfCG6CEPwMeGU10Xy+q55zpaYuhE+cmCc0e1nZd0LfpKDqShXjeIGDjs+HVowOHj zZSgWdkEYDeZZkX8g3rJtj3FZqmQnKwDScYZi09s= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730472AbfI2OEY (ORCPT ); Sun, 29 Sep 2019 10:04:24 -0400 Received: from mail.kernel.org ([198.145.29.99]:47758 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729901AbfI2OES (ORCPT ); Sun, 29 Sep 2019 10:04:18 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id BB4A6218DE; Sun, 29 Sep 2019 14:04:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1569765858; bh=oSbyScY3JG+rW4fllK50xPf1ze1Tix7f6EevJu/txV0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=V9vY3ijXIwhKCfIW3+DIOMB42QSYLsiip/UQKhRkuvkUpSvdKO6VznfYix8EHkGHt eVRcB+CvE2vb9TsFU4AB20kJ+U1r/U+EsVhvGhsSTFmzcHDJpxfjZYikly3pulFk3i oo3IDe2Q+KRKABBae6BtNqWqrs+EnvoK4sUHugKE= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Ilya Pshonkin , Takashi Iwai Subject: [PATCH 5.3 19/25] ALSA: usb-audio: Add Hiby device family to quirks for native DSD support Date: Sun, 29 Sep 2019 15:56:22 +0200 Message-Id: <20190929135016.577043272@linuxfoundation.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20190929135006.127269625@linuxfoundation.org> References: <20190929135006.127269625@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Ilya Pshonkin commit 029d2c0fd61eac74700fb4ffff36fc63bfff7e5e upstream. This patch adds quirk VID ID for Hiby portable players family with native DSD playback support. Signed-off-by: Ilya Pshonkin Cc: Link: https://lore.kernel.org/r/20190917074937.157802-1-ilya.pshonkin@netforce.ua Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/usb/quirks.c | 1 + 1 file changed, 1 insertion(+) --- a/sound/usb/quirks.c +++ b/sound/usb/quirks.c @@ -1655,6 +1655,7 @@ u64 snd_usb_interface_dsd_format_quirks( case 0x152a: /* Thesycon devices */ case 0x25ce: /* Mytek devices */ case 0x2ab6: /* T+A devices */ + case 0xc502: /* HiBy devices */ if (fp->dsd_raw) return SNDRV_PCM_FMTBIT_DSD_U32_BE; break;