mirror of https://gitee.com/openkylin/linux.git
[media] winbond-cir: Fix txandrx module info
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> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
c6cff16926
commit
57f4422f7b
|
@ -232,7 +232,7 @@ MODULE_PARM_DESC(invert, "Invert the signal from the IR receiver");
|
||||||
|
|
||||||
static bool txandrx; /* default = 0 */
|
static bool txandrx; /* default = 0 */
|
||||||
module_param(txandrx, bool, 0444);
|
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;
|
static unsigned int wake_sc = 0x800F040C;
|
||||||
module_param(wake_sc, uint, 0644);
|
module_param(wake_sc, uint, 0644);
|
||||||
|
|
Loading…
Reference in New Issue