mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
UPSTREAM: media: rc: be less noisy when driver misbehaves
Since commit48231f289e("media: rc: drivers should produce alternate pulse and space timing events"), on meson-ir we are regularly producing errors. Reduce to warning level and only warn once to avoid flooding the log. A proper fix for meson-ir is going to be too large for v4.18. Signed-off-by: Sean Young <sean@mess.org> Cc: stable@vger.kernel.org # 4.17+ Tested-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> (cherry picked from commit0ca54b2905) Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com>
This commit is contained in:
@@ -39,13 +39,13 @@ static int ir_raw_event_thread(void *data)
|
||||
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");
|
||||
dev_warn_once(&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));
|
||||
dev_warn_once(&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");
|
||||
dev_warn_once(&dev->dev, "timing event after reset should be pulse");
|
||||
}
|
||||
list_for_each_entry(handler, &ir_raw_handler_list, list)
|
||||
if (dev->enabled_protocols &
|
||||
|
||||
Reference in New Issue
Block a user