diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-01-20 18:16:50 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-02-02 11:20:04 -0200 |
commit | 83587839d648e2a9b5edb5b9d4d9118ead56f22d (patch) | |
tree | d88768d43c9502b0fb76d949b3cea556ed5cbc98 /drivers | |
parent | 752eb7ae5075506fb6ac96a901b0e5b3e459f001 (diff) | |
download | talos-op-linux-83587839d648e2a9b5edb5b9d4d9118ead56f22d.tar.gz talos-op-linux-83587839d648e2a9b5edb5b9d4d9118ead56f22d.zip |
[media] ir-raw: Properly initialize the IR event (BZ#27202)
Changeset 4651918a4afdd49bdea21d2f919b189ef17a6399 changed the way events
are stored. However, it forgot to fix ir_raw_event_store_edge() to work
with the new way. Due to that, the decoders will likely do bad things.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/rc/ir-raw.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/rc/ir-raw.c b/drivers/media/rc/ir-raw.c index 73230ff93b8a..01f258a2a57a 100644 --- a/drivers/media/rc/ir-raw.c +++ b/drivers/media/rc/ir-raw.c @@ -112,7 +112,7 @@ int ir_raw_event_store_edge(struct rc_dev *dev, enum raw_event_type type) { ktime_t now; s64 delta; /* ns */ - struct ir_raw_event ev; + DEFINE_IR_RAW_EVENT(ev); int rc = 0; if (!dev->raw) @@ -125,7 +125,6 @@ int ir_raw_event_store_edge(struct rc_dev *dev, enum raw_event_type type) * being called for the first time, note that delta can't * possibly be negative. */ - ev.duration = 0; if (delta > IR_MAX_DURATION || !dev->raw->last_type) type |= IR_START_EVENT; else |