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,URIBL_BLOCKED,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 DF5FDC3A5A1 for ; Thu, 22 Aug 2019 17:33:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B52B6233FD for ; Thu, 22 Aug 2019 17:33:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1566495235; bh=dJcgYYwO1zK/K2OX8dLOCh5HsTUHvjTM05e7faINRRs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=D/tP1vAOymFmmLNtJ8tyr67+eL7c/Irk6TMGWAsHeIXpLU6TRiOQ/hRQ7lHBIeFeM Kkw12nY9uxyIB8b9NlYwDfLPBdx/SGzbtRx2/DHB6Gv4q751CStbUGc71sI2PDbS11 EwWfundaVQhyCNyvyUl/RJioRAfAO9yl2+CDQQyc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2392445AbfHVRdx (ORCPT ); Thu, 22 Aug 2019 13:33:53 -0400 Received: from mail.kernel.org ([198.145.29.99]:48908 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2404418AbfHVRZZ (ORCPT ); Thu, 22 Aug 2019 13:25:25 -0400 Received: from localhost (wsip-184-188-36-2.sd.sd.cox.net [184.188.36.2]) (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 D3E122341B; Thu, 22 Aug 2019 17:25:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1566494725; bh=dJcgYYwO1zK/K2OX8dLOCh5HsTUHvjTM05e7faINRRs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lXnYXarSy7MTiksJQ8uoDF1/dPo4Y7Z+pXdLVGLAhCdyaVEqzamYUIknRcirbSBiO sv6kAzlqwR32GzJbeMd5kwTXpFiak/RoK0NnFidcA3G3gHt0WQyXZxhjI4LAMFj+ZF dvTi0EwoSHRbwN//lrL6t6enOoOTz68O/O1Chzi4= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Takashi Iwai Subject: [PATCH 4.19 14/85] ALSA: hda - Apply workaround for another AMD chip 1022:1487 Date: Thu, 22 Aug 2019 10:18:47 -0700 Message-Id: <20190822171731.714599183@linuxfoundation.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20190822171731.012687054@linuxfoundation.org> References: <20190822171731.012687054@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: Takashi Iwai commit de768ce45466f3009809719eb7b1f6f5277d9373 upstream. MSI MPG X570 board is with another AMD HD-audio controller (PCI ID 1022:1487) and it requires the same workaround applied for X370, etc (PCI ID 1022:1457). BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=195303 Cc: Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/hda_intel.c | 3 +++ 1 file changed, 3 insertions(+) --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2655,6 +2655,9 @@ static const struct pci_device_id azx_id /* AMD, X370 & co */ { PCI_DEVICE(0x1022, 0x1457), .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_AMD_SB }, + /* AMD, X570 & co */ + { PCI_DEVICE(0x1022, 0x1487), + .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_AMD_SB }, /* AMD Stoney */ { PCI_DEVICE(0x1022, 0x157a), .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_SB |