This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/media_tree.git tree:

Subject: [media] ir-rc5-decoder: print where decoding fails
Author:  Mauro Carvalho Chehab <[email protected]>
Date:    Wed Jul 30 15:49:16 2014 -0300

The IR dprintk message that prints a RC5 decoding failure
is not much helpful, as it doesn't tell on what bit the
error occurred.

Add such information, in order to make the debug message
more useful.

Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/rc/ir-rc5-decoder.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

---

http://git.linuxtv.org/media_tree.git?a=commitdiff;h=32570579cbde878580b621a846b18d04db856286

diff --git a/drivers/media/rc/ir-rc5-decoder.c 
b/drivers/media/rc/ir-rc5-decoder.c
index 93168da..2ef7639 100644
--- a/drivers/media/rc/ir-rc5-decoder.c
+++ b/drivers/media/rc/ir-rc5-decoder.c
@@ -178,8 +178,8 @@ again:
        }
 
 out:
-       IR_dprintk(1, "RC5(x/sz) decode failed at state %i (%uus %s)\n",
-                  data->state, TO_US(ev.duration), TO_STR(ev.pulse));
+       IR_dprintk(1, "RC5(x/sz) decode failed at state %i count %d (%uus 
%s)\n",
+                  data->state, data->count, TO_US(ev.duration), 
TO_STR(ev.pulse));
        data->state = STATE_INACTIVE;
        return -EINVAL;
 }

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to