From patchwork Tue Sep 22 21:07:48 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: spam@systol-ng.god.lan X-Patchwork-Id: 49429 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 n8ML7oV5014955 for ; Tue, 22 Sep 2009 21:07:50 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751102AbZIVVHp (ORCPT ); Tue, 22 Sep 2009 17:07:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751202AbZIVVHp (ORCPT ); Tue, 22 Sep 2009 17:07:45 -0400 Received: from ip78-183-211-87.adsl2.static.versatel.nl ([87.211.183.78]:40762 "EHLO god.dyndns.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751076AbZIVVHo (ORCPT ); Tue, 22 Sep 2009 17:07:44 -0400 Received: by god.dyndns.org (Postfix, from userid 1005) id 1EBC711B618C; Tue, 22 Sep 2009 23:07:48 +0200 (CEST) Date: Tue, 22 Sep 2009 23:07:48 +0200 From: spam@systol-ng.god.lan To: linux-media@vger.kernel.org Cc: mkrufky@gmail.com Subject: [PATCH 3/4] tda8290 enable deemphasis_50 module parameter. Message-ID: <20090922210748.GC8661@systol-ng.god.lan> Reply-To: Henk.Vergonet@gmail.com MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.16 (2007-06-09) Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org This adds a forgotten module_param macro needed to set a deemphasis of 50us. It is the standard setting for commercial FM radio broadcasts outside the US. Signed-off-by: Henk.Vergonet@gmail.com Reviewed-by: Michael Krufky --- 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 diff -r 29e4ba1a09bc linux/drivers/media/common/tuners/tda8290.c --- a/linux/drivers/media/common/tuners/tda8290.c Sat Sep 19 09:45:22 2009 -0300 +++ b/linux/drivers/media/common/tuners/tda8290.c Tue Sep 22 22:06:31 2009 +0200 @@ -34,6 +34,7 @@ MODULE_PARM_DESC(debug, "enable verbose debug messages"); static int deemphasis_50; +module_param(deemphasis_50, int, 0644); MODULE_PARM_DESC(deemphasis_50, "0 - 75us deemphasis; 1 - 50us deemphasis"); /* ---------------------------------------------------------------------- */