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=-12.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham 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 2C048C63697 for ; Tue, 27 Oct 2020 14:52:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D7DFA222D9 for ; Tue, 27 Oct 2020 14:52:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603810342; bh=EXKjmf2dHMoOEj6HotJpnsmavptkQ4nEpZ27eAhHmB8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=rQXHDDxTkBcyclfFCQIBV6TseZo+4SHVFuS7rMH7EJenqBK7GmvRLQUUehUtAQTRY lWt77DxkfQ6AQ5dwMN1qpRrPDtPwn4kUO22rwsRWVytaX7LXgfClzwUpKt3seLIIG9 JGfKHraVUCZp41TAMQxQR2ZpQ/WjQX/MZPtWNWkQ= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1764220AbgJ0Oqi (ORCPT ); Tue, 27 Oct 2020 10:46:38 -0400 Received: from mail.kernel.org ([198.145.29.99]:46446 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1764198AbgJ0Oqe (ORCPT ); Tue, 27 Oct 2020 10:46:34 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (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 4BD9D22258; Tue, 27 Oct 2020 14:46:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603809992; bh=EXKjmf2dHMoOEj6HotJpnsmavptkQ4nEpZ27eAhHmB8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=yisVkoJwCVm3PvEiQgYvZfZCKAMcussXult13VbBaMi5zaqxBJrDwgUNMTRVoVYyb aHYQxjUsesA7EjB/7Tu1qKLjSjoY1nc30H5Cq8PfB1MlzMmqB9Tpbx4rTAN63gU9h6 RpZvgkU7ql8NGqVmniFjeZBTJDEU7H2MTnWeCdZk= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Connor McAdams , Takashi Iwai , Sasha Levin Subject: [PATCH 5.4 392/408] ALSA: hda/ca0132 - Add new quirk ID for SoundBlaster AE-7. Date: Tue, 27 Oct 2020 14:55:30 +0100 Message-Id: <20201027135513.161073579@linuxfoundation.org> X-Mailer: git-send-email 2.29.1 In-Reply-To: <20201027135455.027547757@linuxfoundation.org> References: <20201027135455.027547757@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Connor McAdams [ Upstream commit 620f08eea6d6961b789af3fa3ea86725c8c93ece ] Add a new PCI subsystem ID for the SoundBlaster AE-7 card. Signed-off-by: Connor McAdams Link: https://lore.kernel.org/r/20200825201040.30339-11-conmanx360@gmail.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/pci/hda/patch_ca0132.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sound/pci/hda/patch_ca0132.c b/sound/pci/hda/patch_ca0132.c index 98a11c38e7a8e..459aff6c10bc5 100644 --- a/sound/pci/hda/patch_ca0132.c +++ b/sound/pci/hda/patch_ca0132.c @@ -1065,6 +1065,7 @@ enum { QUIRK_R3DI, QUIRK_R3D, QUIRK_AE5, + QUIRK_AE7, }; #ifdef CONFIG_PCI @@ -1184,6 +1185,7 @@ static const struct snd_pci_quirk ca0132_quirks[] = { SND_PCI_QUIRK(0x1102, 0x0013, "Recon3D", QUIRK_R3D), SND_PCI_QUIRK(0x1102, 0x0018, "Recon3D", QUIRK_R3D), SND_PCI_QUIRK(0x1102, 0x0051, "Sound Blaster AE-5", QUIRK_AE5), + SND_PCI_QUIRK(0x1102, 0x0081, "Sound Blaster AE-7", QUIRK_AE7), {} }; -- 2.25.1