Message ID | 20120702115800.1275f944@kryten (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Mon, Jul 02, 2012 at 11:58:00AM +1000, Anton Blanchard wrote: > >We aren't getting any module info for the txandx option because >of a typo: > >parm: txandrx:bool > >Signed-off-by: Anton Blanchard <anton@samba.org> Acked-by: David Härdeman <david@hardeman.nu> >--- > >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); > -- 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);
We aren't getting any module info for the txandx option because of a typo: parm: txandrx:bool Signed-off-by: Anton Blanchard <anton@samba.org> --- -- 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