20402106a3
As usual these patches were extracted and rebased from the raspberry pi repo: https://github.com/raspberrypi/linux/tree/rpi-4.4.y Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
21 lines
863 B
Diff
21 lines
863 B
Diff
From 324d6d326ca794bf6d639b85c9745628b99b47c9 Mon Sep 17 00:00:00 2001
|
|
From: Rodrigo Freire <rfreire@rf.usersys.redhat.com>
|
|
Date: Tue, 22 Mar 2016 12:40:33 -0300
|
|
Subject: [PATCH 209/423] lirc_rpi: Lower IR reception error to debug
|
|
|
|
Lowers a IR reception error condition message to KERNEL_DEBUG
|
|
---
|
|
drivers/staging/media/lirc/lirc_rpi.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/staging/media/lirc/lirc_rpi.c
|
|
+++ b/drivers/staging/media/lirc/lirc_rpi.c
|
|
@@ -271,7 +271,7 @@ static irqreturn_t irq_handler(int i, vo
|
|
data = PULSE_MASK; /* really long time */
|
|
if (!(signal^sense)) {
|
|
/* sanity check */
|
|
- printk(KERN_WARNING LIRC_DRIVER_NAME
|
|
+ printk(KERN_DEBUG LIRC_DRIVER_NAME
|
|
": AIEEEE: %d %d %lx %lx %lx %lx\n",
|
|
signal, sense, tv.tv_sec, lasttv.tv_sec,
|
|
tv.tv_usec, lasttv.tv_usec);
|