From patchwork Mon Oct 12 19:12:02 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Chen X-Patchwork-Id: 35811 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 D1407B7334 for ; Tue, 13 Oct 2009 06:12:50 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.60) (envelope-from ) id 1MxQK1-0002eq-JZ; Mon, 12 Oct 2009 20:12:41 +0100 Received: from mail-bw0-f224.google.com ([209.85.218.224]) by chlorine.canonical.com with esmtp (Exim 4.60) (envelope-from ) id 1MxQJv-0002el-7j for kernel-team@lists.ubuntu.com; Mon, 12 Oct 2009 20:12:35 +0100 Received: by bwz24 with SMTP id 24so3375008bwz.38 for ; Mon, 12 Oct 2009 12:12:34 -0700 (PDT) Received: by 10.204.5.194 with SMTP id 2mr5384919bkw.40.1255374754887; Mon, 12 Oct 2009 12:12:34 -0700 (PDT) Received: from ?192.168.1.235? (c-24-126-105-207.hsd1.dc.comcast.net [24.126.105.207]) by mx.google.com with ESMTPS id c28sm6354050fka.24.2009.10.12.12.12.32 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 12 Oct 2009 12:12:34 -0700 (PDT) Date: Mon, 12 Oct 2009 15:12:02 -0400 (EDT) From: Daniel T Chen X-X-Sender: crimsun@errno To: kernel-team@lists.ubuntu.com Subject: Please pull from git://kernel.ubuntu.com/dtchen/ubuntu-karmic.git lp449742 Message-ID: User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Daniel T Chen 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 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 As the subject requests, I've added two fixes from 2.6.32 to enable playback and capture by default for some HP dv models. Please apply. Thanks, Dan -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iD8DBQFK03+Ge9GwFciKvaMRCsynAJ9SiOeknLgbeBj0eFKQMjsXscDYXwCfZ9sU orQVvVrrTDhdgGZ+D55ou8A= =Y1Bu -----END PGP SIGNATURE----- From e98cf2265b02a338096bd0a16e555f83fb217d86 Mon Sep 17 00:00:00 2001 From: Daniel T Chen Date: Mon, 12 Oct 2009 14:50:42 -0400 Subject: [PATCH] ALSA: hda - Add quirk masks for HP dv models BugLink: http://bugs.launchpad.net/bugs/449742 Backport quirk masks for HP dv models from 2.6.32. This allows at least playback and recording to be usable by default in Karmic. Signed-off-by: Daniel T Chen --- sound/pci/hda/patch_sigmatel.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index b1b1ebd..2f19ac2 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c @@ -1927,6 +1927,10 @@ static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = { "HP mini 1000", STAC_HP_M4), SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b, "HP HDX", STAC_HP_HDX), /* HDX16 */ + SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620, + "HP dv6", STAC_HP_DV5), + SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010, + "HP", STAC_HP_DV5), SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233, "unknown Dell", STAC_DELL_M4_1), SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234, -- 1.6.3.3