From patchwork Tue Sep 14 14:33:07 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Henningsson X-Patchwork-Id: 64704 X-Patchwork-Delegate: brad.figg@canonical.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id D2F02B70A8 for ; Wed, 15 Sep 2010 00:33:18 +1000 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.69) (envelope-from ) id 1OvWZK-0003fB-Vn; Tue, 14 Sep 2010 15:33:11 +0100 Received: from adelie.canonical.com ([91.189.90.139]) by chlorine.canonical.com with esmtp (Exim 4.69) (envelope-from ) id 1OvWZJ-0003f5-A8 for kernel-team@lists.ubuntu.com; Tue, 14 Sep 2010 15:33:09 +0100 Received: from hutte.canonical.com ([91.189.90.181]) by adelie.canonical.com with esmtp (Exim 4.69 #1 (Debian)) id 1OvWZJ-0007hk-99 for ; Tue, 14 Sep 2010 15:33:09 +0100 Received: from c-83-233-18-148.cust.bredband2.com ([83.233.18.148] helo=[192.168.8.102]) by hutte.canonical.com with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1OvWZJ-0004VH-6O for kernel-team@lists.ubuntu.com; Tue, 14 Sep 2010 15:33:09 +0100 Message-ID: <4C8F87A3.1070503@canonical.com> Date: Tue, 14 Sep 2010 16:33:07 +0200 From: David Henningsson User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.9) Gecko/20100903 Thunderbird/3.1.3 MIME-Version: 1.0 To: "kernel-team@lists.ubuntu.com" Subject: [Lucid] (pre-stable) [PATCH] ALSA: hda - Handle pin NID 0x1a, 0x1b and 0x21 on ALC259/269 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.9 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com BugLink: https://launchpad.net/bugs/582199 BugLink: https://launchpad.net/bugs/586418 BugLink: https://launchpad.net/bugs/588031 Backport patches from HEAD in order to enable playback on several ALC269. The change went into Maverick over a month ago without any regressions so far. Signed-off-by: David Henningsson Acked-by: Brad Figg From 5c1d0ee246f4a6b8a813b4782817fe754dc032fe Mon Sep 17 00:00:00 2001 From: David Henningsson Date: Mon, 6 Sep 2010 08:36:14 +0200 Subject: [PATCH] ALSA: hda - Handle pin NID 0x1a, 0x1b and 0x21 on ALC259/269 Backport patches from HEAD in order to enable playback on several ALC269. Signed-off-by: David Henningsson --- sound/pci/hda/patch_realtek.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 7b4e74d..4241cc5 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -12389,6 +12389,9 @@ static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid, dac = 0x02; break; case 0x15: + case 0x1a: /* ALC259/269 only */ + case 0x1b: /* ALC259/269 only */ + case 0x21: /* ALC269vb has this pin, too */ dac = 0x03; break; default: -- 1.7.0.4