From patchwork Mon Jul 2 01:58:00 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Anton Blanchard X-Patchwork-Id: 1145351 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 1BF023FE4F for ; Mon, 2 Jul 2012 01:58:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755360Ab2GBB6T (ORCPT ); Sun, 1 Jul 2012 21:58:19 -0400 Received: from ozlabs.org ([203.10.76.45]:39778 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754571Ab2GBB6A (ORCPT ); Sun, 1 Jul 2012 21:58:00 -0400 Received: from kryten (ppp121-45-170-72.lns20.syd6.internode.on.net [121.45.170.72]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPSA id E2F7C2C01C2; Mon, 2 Jul 2012 11:57:57 +1000 (EST) Date: Mon, 2 Jul 2012 11:58:00 +1000 From: Anton Blanchard To: mchehab@infradead.org, david@hardeman.nu Cc: linux-media@vger.kernel.org Subject: [PATCH 1/3] [media] winbond-cir: Fix txandrx module info Message-ID: <20120702115800.1275f944@kryten> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org We aren't getting any module info for the txandx option because of a typo: parm: txandrx:bool Signed-off-by: Anton Blanchard Acked-by: David Härdeman --- -- 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 Index: linux-2.6/drivers/media/rc/winbond-cir.c =================================================================== --- linux-2.6.orig/drivers/media/rc/winbond-cir.c 2011-11-20 20:30:57.831906589 +1100 +++ linux-2.6/drivers/media/rc/winbond-cir.c 2011-11-20 20:32:13.472362123 +1100 @@ -232,7 +232,7 @@ MODULE_PARM_DESC(invert, "Invert the sig static int txandrx; /* default = 0 */ module_param(txandrx, bool, 0444); -MODULE_PARM_DESC(invert, "Allow simultaneous TX and RX"); +MODULE_PARM_DESC(txandrx, "Allow simultaneous TX and RX"); static unsigned int wake_sc = 0x800F040C; module_param(wake_sc, uint, 0644);