Commit 74c4792c authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] ir-raw-event: Fix a stupid error at a printk

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 43725843
......@@ -89,7 +89,7 @@ int ir_raw_event_store(struct input_dev *input_dev, struct ir_raw_event *ev)
if (!ir->raw)
return -EINVAL;
IR_dprintk(2, "sample: (05%dus %s)\n",
IR_dprintk(2, "sample: (%05dus %s)\n",
TO_US(ev->duration), TO_STR(ev->pulse));
if (kfifo_in(&ir->raw->kfifo, ev, sizeof(*ev)) != sizeof(*ev))
......
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