]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
media: rc: drivers should produce alternate pulse and space timing events
authorSean Young <sean@mess.org>
Thu, 10 May 2018 10:11:47 +0000 (06:11 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Mon, 14 May 2018 11:15:51 +0000 (07:15 -0400)
Report an error if this is not the case or any problem with the generated
raw events.

Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/rc/rc-ir-raw.c

index 2e50104ae138f8ab3c736fdaca251267d0e1d9cd..49c56da9bc6716734ea44f35dc43f40127a9a00d 100644 (file)
@@ -22,16 +22,27 @@ static int ir_raw_event_thread(void *data)
 {
        struct ir_raw_event ev;
        struct ir_raw_handler *handler;
-       struct ir_raw_event_ctrl *raw = (struct ir_raw_event_ctrl *)data;
+       struct ir_raw_event_ctrl *raw = data;
+       struct rc_dev *dev = raw->dev;
 
        while (1) {
                mutex_lock(&ir_raw_handler_lock);
                while (kfifo_out(&raw->kfifo, &ev, 1)) {
+                       if (is_timing_event(ev)) {
+                               if (ev.duration == 0)
+                                       dev_err(&dev->dev, "nonsensical timing event of duration 0");
+                               if (is_timing_event(raw->prev_ev) &&
+                                   !is_transition(&ev, &raw->prev_ev))
+                                       dev_err(&dev->dev, "two consecutive events of type %s",
+                                               TO_STR(ev.pulse));
+                               if (raw->prev_ev.reset && ev.pulse == 0)
+                                       dev_err(&dev->dev, "timing event after reset should be pulse");
+                       }
                        list_for_each_entry(handler, &ir_raw_handler_list, list)
-                               if (raw->dev->enabled_protocols &
+                               if (dev->enabled_protocols &
                                    handler->protocols || !handler->protocols)
-                                       handler->decode(raw->dev, ev);
-                       ir_lirc_raw_event(raw->dev, ev);
+                                       handler->decode(dev, ev);
+                       ir_lirc_raw_event(dev, ev);
                        raw->prev_ev = ev;
                }
                mutex_unlock(&ir_raw_handler_lock);