Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0aff8a89 authored by Dan Carpenter's avatar Dan Carpenter Committed by Mauro Carvalho Chehab
Browse files

[media] uvcvideo: small cleanup in uvc_video_clock_update()



Smatch is not smart enough to see that "&stream->clock.lock" and
"&clock->lock" are the same thing so it complains about the locking
here.  Let's make it more consistent.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 1ab8c3fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -706,7 +706,7 @@ void uvc_video_clock_update(struct uvc_streaming *stream,
	vbuf->vb2_buf.timestamp = timespec_to_ns(&ts);

done:
	spin_unlock_irqrestore(&stream->clock.lock, flags);
	spin_unlock_irqrestore(&clock->lock, flags);
}

/* ------------------------------------------------------------------------