From patchwork Fri Mar 27 17:24:17 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Carvalho Chehab X-Patchwork-Id: 14760 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n2RHOU2o024699 for ; Fri, 27 Mar 2009 17:24:30 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754708AbZC0RYa (ORCPT ); Fri, 27 Mar 2009 13:24:30 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754229AbZC0RYa (ORCPT ); Fri, 27 Mar 2009 13:24:30 -0400 Received: from bombadil.infradead.org ([18.85.46.34]:59777 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754140AbZC0RY3 (ORCPT ); Fri, 27 Mar 2009 13:24:29 -0400 Received: from 200.220.139.66.nipcable.com ([200.220.139.66] helo=pedra.chehab.org) by bombadil.infradead.org with esmtpsa (Exim 4.69 #1 (Red Hat Linux)) id 1LnFn8-0005a0-Q4; Fri, 27 Mar 2009 17:24:27 +0000 Date: Fri, 27 Mar 2009 14:24:17 -0300 From: Mauro Carvalho Chehab Cc: Artem Makhutov , linux-media@vger.kernel.org, Manu Abraham Subject: Re: [PATCH] Remove debug output from stb6100_cfg.h Message-ID: <20090327142417.4d80f166@pedra.chehab.org> In-Reply-To: <20090326094553.GA12847@titan.makhutov-it.de> References: <20090326094553.GA12847@titan.makhutov-it.de> X-Mailer: Claws Mail 3.3.1 (GTK+ 2.10.4; x86_64-redhat-linux-gnu) Mime-Version: 1.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org See http://www.infradead.org/rpr.html To: unlisted-recipients:; (no To-header on input) Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Manu, If ok to you, please ack. On Thu, 26 Mar 2009 10:45:53 +0100 Artem Makhutov wrote: This patch removes the debug output from stb6100_cfg.h as it is flooding the syslog with tuning data during normal operation. Signed-off-by: Artem Makhutov Cheers, Mauro Acked-by: Manu Abraham --- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux.old/drivers/media/dvb/frontends/stb6100_cfg.h 2009-03-26 10:28:57.000000000 +0100 +++ linux/drivers/media/dvb/frontends/stb6100_cfg.h 2009-03-26 10:29:52.000000000 +0100 @@ -36,7 +36,6 @@ return err; } *frequency = t_state.frequency; - printk("%s: Frequency=%d\n", __func__, t_state.frequency); } return 0; } @@ -59,7 +58,6 @@ return err; } } - printk("%s: Frequency=%d\n", __func__, t_state.frequency); return 0; } @@ -81,7 +79,6 @@ } *bandwidth = t_state.bandwidth; } - printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth); return 0; } @@ -103,6 +100,5 @@ return err; } } - printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth); return 0; }