From patchwork Mon May 24 05:42:07 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leann Ogasawara X-Patchwork-Id: 53374 X-Patchwork-Delegate: leann.ogasawara@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 590FDB7D79 for ; Mon, 24 May 2010 15:42:22 +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 1OGQQW-00062d-TH; Mon, 24 May 2010 06:42:12 +0100 Received: from adelie.canonical.com ([91.189.90.139]) by chlorine.canonical.com with esmtp (Exim 4.69) (envelope-from ) id 1OGQQV-00062Y-R5 for kernel-team@lists.ubuntu.com; Mon, 24 May 2010 06:42:11 +0100 Received: from hutte.canonical.com ([91.189.90.181]) by adelie.canonical.com with esmtp (Exim 4.69 #1 (Debian)) id 1OGQQV-0005hp-OU for ; Mon, 24 May 2010 06:42:11 +0100 Received: from c-76-105-148-120.hsd1.or.comcast.net ([76.105.148.120] helo=[192.168.1.4]) by hutte.canonical.com with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1OGQQV-0006HH-B9 for kernel-team@lists.ubuntu.com; Mon, 24 May 2010 06:42:11 +0100 Subject: [PATCH 1/1] [Maverick] Disable CONFIG_SND_HDA_INPUT_BEEP_MODE From: Leann Ogasawara To: kernel-team Date: Sun, 23 May 2010 22:42:07 -0700 Message-ID: <1274679727.24569.3440.camel@emiko> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 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 During the UDS Maverick kernel config review session [1], we agreed to disable CONFIG_SND_HDA_INPUT_BEEP_MODE by default. This following patch disables this option. Note that this value is runtime configurable via sysfs if people wish to enable it. Thanks, Leann [1] https://wiki.ubuntu.com/KernelTeam/Specs/KernelMaverickConfigReview >From 99bb17ce94c81d39ac6e783fa1eaa3bd030b6180 Mon Sep 17 00:00:00 2001 From: Leann Ogasawara Date: Sun, 23 May 2010 12:50:40 -0700 Subject: [PATCH] UBUNTU: [Config] Disable CONFIG_SND_HDA_INPUT_BEEP_MODE by default BugLink: http://bugs.launchpad.net/bugs/582350 Set CONFIG_SND_HDA_INPUT_BEEP_MODE=0 which disables the the digital beep interface for HD-audio by default. Note that this value is runtime configurable via sysfs if people wish to enable. Signed-off-by: Leann Ogasawara Acked-by: Andy Whitcroft --- debian.master/config/config.common.ports | 2 +- debian.master/config/config.common.ubuntu | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian.master/config/config.common.ports b/debian.master/config/config.common.ports index 0414e63..35c61e7 100644 --- a/debian.master/config/config.common.ports +++ b/debian.master/config/config.common.ports @@ -3198,7 +3198,7 @@ CONFIG_SND_HDA_ELD=y CONFIG_SND_HDA_GENERIC=y CONFIG_SND_HDA_HWDEP=y CONFIG_SND_HDA_INPUT_BEEP=y -CONFIG_SND_HDA_INPUT_BEEP_MODE=1 +CONFIG_SND_HDA_INPUT_BEEP_MODE=0 CONFIG_SND_HDA_INPUT_JACK=y CONFIG_SND_HDA_INTEL=m CONFIG_SND_HDA_PATCH_LOADER=y diff --git a/debian.master/config/config.common.ubuntu b/debian.master/config/config.common.ubuntu index 5a070cb..3c4b7ac 100644 --- a/debian.master/config/config.common.ubuntu +++ b/debian.master/config/config.common.ubuntu @@ -3710,7 +3710,7 @@ CONFIG_SND_HDA_ELD=y CONFIG_SND_HDA_GENERIC=y CONFIG_SND_HDA_HWDEP=y CONFIG_SND_HDA_INPUT_BEEP=y -CONFIG_SND_HDA_INPUT_BEEP_MODE=1 +CONFIG_SND_HDA_INPUT_BEEP_MODE=0 CONFIG_SND_HDA_INPUT_JACK=y CONFIG_SND_HDA_INTEL=m CONFIG_SND_HDA_PATCH_LOADER=y