mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 19:36:44 +07:00
V4L/DVB: IR: add tx callbacks to ir-core
Signed-off-by: Jarod Wilson <jarod@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
d732a72de4
commit
9b7c54d926
@ -47,15 +47,21 @@ enum rc_driver_type {
|
||||
* is opened.
|
||||
* @close: callback to allow drivers to disable polling/irq when IR input device
|
||||
* is opened.
|
||||
* @s_tx_mask: set transmitter mask (for devices with multiple tx outputs)
|
||||
* @s_tx_carrier: set transmit carrier frequency
|
||||
* @tx_ir: transmit IR
|
||||
*/
|
||||
struct ir_dev_props {
|
||||
enum rc_driver_type driver_type;
|
||||
unsigned long allowed_protos;
|
||||
u32 scanmask;
|
||||
void *priv;
|
||||
void *priv;
|
||||
int (*change_protocol)(void *priv, u64 ir_type);
|
||||
int (*open)(void *priv);
|
||||
void (*close)(void *priv);
|
||||
int (*s_tx_mask)(void *priv, u32 mask);
|
||||
int (*s_tx_carrier)(void *priv, u32 carrier);
|
||||
int (*tx_ir)(void *priv, const char *buf, u32 n);
|
||||
};
|
||||
|
||||
struct ir_input_dev {
|
||||
|
Loading…
Reference in New Issue
Block a user