Archived
14
0
Fork 0

V4L/DVB: IR TX: incoming IR buffer now an int pointer

incoming IR buffer now an int pointer, and not fed from userspace

Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Jarod Wilson 2010-07-02 00:38:09 -03:00 committed by Mauro Carvalho Chehab
parent ca4146985d
commit 30eb1be718

View file

@ -61,7 +61,7 @@ struct ir_dev_props {
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);
int (*tx_ir)(void *priv, int *txbuf, u32 n);
};
struct ir_input_dev {