Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932907AbZLETBh (ORCPT ); Sat, 5 Dec 2009 14:01:37 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932886AbZLETBc (ORCPT ); Sat, 5 Dec 2009 14:01:32 -0500 Received: from gimli.pxnet.com ([195.227.45.7]:54732 "EHLO mail.pxnet.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932874AbZLETBb (ORCPT ); Sat, 5 Dec 2009 14:01:31 -0500 From: Tilman Schmidt To: David Miller , Karsten Keil CC: Hansjoerg Lipp , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, isdn4linux@listserv.isdn4linux.de, i4ldeveloper@listserv.isdn4linux.de Subject: [PATCH] gigaset: don't enable any debugging output by default Message-Id: <20091205180416.B3629400DE@xenon.ts.pxnet.com> Date: Sat, 5 Dec 2009 19:04:16 +0100 (CET) X-Spam-Score: -2.179 () AWL,BAYES_00,RDNS_NONE Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1148 Lines: 36 When built with debugging support, the Gigaset driver enabled some debugging messages by default. Change the default to "all off". Impact: cosmetic Signed-off-by: Tilman Schmidt --- Please merge for 2.6.33 so I can in good conscience encourage people to build the driver with CONFIG_GIGASET_DEBUG=y. ;-) Thanks, Tilman drivers/isdn/gigaset/common.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/isdn/gigaset/common.c b/drivers/isdn/gigaset/common.c index c438cfc..a0b85d1 100644 --- a/drivers/isdn/gigaset/common.c +++ b/drivers/isdn/gigaset/common.c @@ -29,7 +29,7 @@ #endif /* Module parameters */ -int gigaset_debuglevel = DEBUG_DEFAULT; +int gigaset_debuglevel; EXPORT_SYMBOL_GPL(gigaset_debuglevel); module_param_named(debug, gigaset_debuglevel, int, S_IRUGO|S_IWUSR); MODULE_PARM_DESC(debug, "debug level"); -- 1.6.5.3.298.g39add -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/