This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-dvb.git tree:
Subject: V4L/DVB: IR TX: incoming IR buffer now an int pointer Author: Jarod Wilson <[email protected]> Date: Fri Jul 2 00:38:09 2010 -0300 incoming IR buffer now an int pointer, and not fed from userspace Signed-off-by: Jarod Wilson <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> include/media/ir-core.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/v4l-dvb.git?a=commitdiff;h=3512e4eee2380c19e593f66c4bb7366e718713f5 diff --git a/include/media/ir-core.h b/include/media/ir-core.h index 9b957af..513e60d 100644 --- a/include/media/ir-core.h +++ b/include/media/ir-core.h @@ -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 { _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
