From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Google-Smtp-Source: AH8x226qYccvB+s/aPJp0kByoo/ddKsxcb6AxzdXQ7n+dA5eYOUys+NMB95/i+vqDioP3bg2rsdN ARC-Seal: i=1; a=rsa-sha256; t=1516611078; cv=none; d=google.com; s=arc-20160816; b=O94mhF3tvMVtrIe4wZSs8fYI6f6egEzJobUZmSchgSqxno+zlt55CYCFVwNQqAIgrO CwQAZmxL14TVTS5HvmhFojJtBP93VpDVoISt3vUU4iJHy/L2M4qRvhqXNpBvWb3X9oxn jDAnlvTqClxkE5xKjiQruNZnJ8mORYsmcyAWl0Jf45McLVSLoQUUEmdQKArzw4mRjB/7 a5VFE4S4cVlHfIRjhpcdqY5abA1L7XM45NnZ0fy3vqFMjkhV5rfsIev+QixHgEFsKqxv 2yUT056wbEjrUuS+QCDOB3+dLn7NyoXFoMMWhXRLdl/uGe4qhfd0JRzy+/PVo2YoSQxW esHg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=mime-version:user-agent:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=35TMG9wNl0QoESD5zuMBTdZWbo8B2FARgp7hg/kcW1U=; b=DvN0dx6LrG5/Y7+0wwvOHS9m33UBd7QNkGO0h8K3RzuyVF8F/2OKbBxVYGNuykBMZM TbxAtsIIW+XhGgxJfmHqZ2S3r4zlpVtIu+1HnLx2KOQfF/JeymAHf44briZJlZIFvvaf U9zNpF+juzoow1DXUjVm9+482ybLhG4IoJ7XAdWIcSt49p/hOBs2cvhGMFy3V4ik/S/G W58M1PPs1+a9jeeqfSFcn6pgnGYmCroJU5D+Dd9g0CHgnRCDjfIkPV4bX1U+1NLtVJ86 0PCUtvWaEoKxmqFH6CUg2aeOENRMCERZtchfzWI8v1uCCSBE922A3Jd00N92dfU52wBq 6q2g== ARC-Authentication-Results: i=1; mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.71.90 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org Authentication-Results: mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.71.90 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Takashi Iwai Subject: [PATCH 4.14 20/89] ALSA: hda - Apply headphone noise quirk for another Dell XPS 13 variant Date: Mon, 22 Jan 2018 09:45:00 +0100 Message-Id: <20180122083956.684265091@linuxfoundation.org> X-Mailer: git-send-email 2.16.0 In-Reply-To: <20180122083954.683903493@linuxfoundation.org> References: <20180122083954.683903493@linuxfoundation.org> User-Agent: quilt/0.65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-getmail-retrieved-from-mailbox: INBOX X-GMAIL-LABELS: =?utf-8?b?IlxcU2VudCI=?= X-GMAIL-THRID: =?utf-8?q?1590281371061809552?= X-GMAIL-MSGID: =?utf-8?q?1590281978401657695?= X-Mailing-List: linux-kernel@vger.kernel.org List-ID: 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Takashi Iwai commit e4c9fd10eb21376f44723c40ad12395089251c28 upstream. There is another Dell XPS 13 variant (SSID 1028:082a) that requires the existing fixup for reducing the headphone noise. This patch adds the quirk entry for that. BugLink: http://lkml.kernel.org/r/CAHXyb9ZCZJzVisuBARa+UORcjRERV8yokez=DP1_5O5isTz0ZA@mail.gmail.com Reported-and-tested-by: Francisco G. Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/patch_realtek.c | 1 + 1 file changed, 1 insertion(+) --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -6173,6 +6173,7 @@ static const struct snd_pci_quirk alc269 SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE), SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME), SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER), + SND_PCI_QUIRK(0x1028, 0x082a, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE), SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),