aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarod Wilson <jarod@redhat.com>2010-07-01 23:38:09 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-08-02 14:17:28 -0400
commit30eb1be718a4753dd1912eb35af4cdaa25cefea9 (patch)
tree795846ee6a77c110e148014f75c3d3f28a4b4b19
parentca4146985db7cbb97816e9b961b8db79e63d9e86 (diff)
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>
-rw-r--r--include/media/ir-core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/ir-core.h b/include/media/ir-core.h
index 9b957af21588..513e60dd1010 100644
--- a/include/media/ir-core.h
+++ b/include/media/ir-core.h
@@ -61,7 +61,7 @@ struct ir_dev_props {
61 void (*close)(void *priv); 61 void (*close)(void *priv);
62 int (*s_tx_mask)(void *priv, u32 mask); 62 int (*s_tx_mask)(void *priv, u32 mask);
63 int (*s_tx_carrier)(void *priv, u32 carrier); 63 int (*s_tx_carrier)(void *priv, u32 carrier);
64 int (*tx_ir)(void *priv, const char *buf, u32 n); 64 int (*tx_ir)(void *priv, int *txbuf, u32 n);
65}; 65};
66 66
67struct ir_input_dev { 67struct ir_input_dev {