[media] staging: media: lirc: fix MODULE_PARM_DESC typo
It "tx_mask" was intended instead of "tx_maxk". Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
39de7d95f8
commit
199964b1d0
|
@ -730,7 +730,7 @@ module_param(irq, int, S_IRUGO);
|
|||
MODULE_PARM_DESC(irq, "Interrupt (7 or 5)");
|
||||
|
||||
module_param(tx_mask, int, S_IRUGO);
|
||||
MODULE_PARM_DESC(tx_maxk, "Transmitter mask (default: 0x01)");
|
||||
MODULE_PARM_DESC(tx_mask, "Transmitter mask (default: 0x01)");
|
||||
|
||||
module_param(debug, bool, S_IRUGO | S_IWUSR);
|
||||
MODULE_PARM_DESC(debug, "Enable debugging messages");
|
||||
|
|
Loading…
Reference in New Issue