Commit a04930b7 authored by Bodo Eggert's avatar Bodo Eggert Committed by Mauro Carvalho Chehab

media: serial_ir: change "ignoring spike" to debug level

At least on my system with a self-made IR receiver, my kernel log is filled
with:

serial_ir serial_ir.0: ignoring spike: 1 1 1419988034627194ns 1419956080709377ns

These messages happen at random and do not prevent the receiver from
working. Also I cannot change the features of the IC, therefore they are not
useful. Probably they are not useful at all.

However they fill the console, they accumulate and fill the dmesg log, by
doing this, they prevent me from seeing important message.
Signed-off-by: default avatarBodo Eggert <7eggert@gmx.de>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 31f715dd
...@@ -353,7 +353,7 @@ static irqreturn_t serial_ir_irq_handler(int i, void *blah) ...@@ -353,7 +353,7 @@ static irqreturn_t serial_ir_irq_handler(int i, void *blah)
dcd = (status & hardware[type].signal_pin) ? 1 : 0; dcd = (status & hardware[type].signal_pin) ? 1 : 0;
if (dcd == last_dcd) { if (dcd == last_dcd) {
dev_err(&serial_ir.pdev->dev, dev_dbg(&serial_ir.pdev->dev,
"ignoring spike: %d %d %lldns %lldns\n", "ignoring spike: %d %d %lldns %lldns\n",
dcd, sense, ktime_to_ns(kt), dcd, sense, ktime_to_ns(kt),
ktime_to_ns(serial_ir.lastkt)); ktime_to_ns(serial_ir.lastkt));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment