1
0
Fork 0

[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: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
hifive-unleashed-5.1
Dan Carpenter 2015-10-22 07:09:05 -02:00 committed by Mauro Carvalho Chehab
parent 1ab8c3fc75
commit 0aff8a894a
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/* ------------------------------------------------------------------------