From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Google-Smtp-Source: AH8x227/NTQiRWAbM4cJ0TglIQg69KTCxIGJhplmP1RgTMt7KoseJvIr1Z31RKOyp0b3ZSQErJLj ARC-Seal: i=1; a=rsa-sha256; t=1516610499; cv=none; d=google.com; s=arc-20160816; b=yRrovt9Dok7otCV4YO95QkxXIJwHvUqW51v4n/zw2H790f0wNuefK0D8ESm1zmnMVa CvrTDyvSg7ufM7L6dnXxMwJqUOCtpefOxsoZF4nlLhWFBdMOKWc0bpwr/o24xpUsj4WC fNYlMyhVjcmOvrZAaCjDRQMjYSvEVfVvC7j6eYQq85OhE0Egde6EgFC+X+vFuHbC1onb ATS1EC7SEdZb4S1SbgjNXUjoczG9iUYgEdsu+cANBS//+fWzB6t9+ywNODldCk6DVqBg v583nvdsjvhUpNv7KeTo4lhHg6O4NzqBUKfhpaG6Wrcc4pZUKFwrZCgU12b0lx63Svox FtNQ== 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=96lxDA0AV5558RqNzzQqOqofXnBfiYUKgqOjf87hxrM=; b=cIEKf3jZX/3CGzdIa/l/zsWYpOUuUsVWSeTvIxqZ017HNMGv/9eV/buwfnmxR1LLW6 vW5LMb8NxVJGTlxy6s9pV93S9Ru4Fu/1Z80g/7r8IYwlZlNijliccD98IKKARyc3Mcpg d6ZCKTwMF4u4XKqFrimQ7EEg+411G+fp1j6wjIeSOqBbBiFwzKf85V1ZFNZhi4IjjLJE gU7ggSly64CP4KP49MvkGaAlv5SF1kAtgfaBj5rgkYR7BHeKH+u+vKUA2WW0gcMF6cxw IJ2rCtVSB6CnK9i+D0/BYU0AdA/pBYoiOsEGUdsGRsoFDAdv4SlSjsuieeB0uhAmpjAU TXjQ== 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.4 24/53] ALSA: hda - Apply headphone noise quirk for another Dell XPS 13 variant Date: Mon, 22 Jan 2018 09:40:16 +0100 Message-Id: <20180122083911.340907538@linuxfoundation.org> X-Mailer: git-send-email 2.16.0 In-Reply-To: <20180122083910.299610926@linuxfoundation.org> References: <20180122083910.299610926@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?1590281371061809552?= X-Mailing-List: linux-kernel@vger.kernel.org List-ID: 4.4-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 @@ -5600,6 +5600,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),