Commit 201b5673 authored by Fengguang Wu's avatar Fengguang Wu Committed by Mauro Carvalho Chehab

media: fix semicolon.cocci warnings

drivers/media/common/videobuf/videobuf2-core.c:2525:34-35: Unneeded semicolon

 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: 03fbdb2f ("media: move videobuf2 to drivers/media/common")
Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
parent ada79555
......@@ -2522,7 +2522,7 @@ static int vb2_thread(void *data)
break;
call_void_qop(q, wait_finish, q);
if (copy_timestamp)
vb->timestamp = ktime_get_ns();;
vb->timestamp = ktime_get_ns();
if (!threadio->stop)
ret = vb2_core_qbuf(q, vb->index, NULL);
call_void_qop(q, wait_prepare, q);
......
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