diff options
| author | 2021-03-11 14:07:10 +0100 | |
|---|---|---|
| committer | 2021-03-22 11:55:32 +0100 | |
| commit | 48e15418e41e4f32bb96dd8af1ae4a89ae13157b (patch) | |
| tree | 39f52bb228c25c8d261f2570a8a7af5606e16619 /drivers/media/v4l2-core/v4l2-ioctl.c | |
| parent | media: v4l2-dev.c: show which events are requested by poll() (diff) | |
| download | linux-dev-48e15418e41e4f32bb96dd8af1ae4a89ae13157b.tar.xz linux-dev-48e15418e41e4f32bb96dd8af1ae4a89ae13157b.zip | |
media: v4l2-ioctl.c: fix timestamp format
The timestamp uses microseconds, not nanoseconds, so use %06ld instead
of %09ld.
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/v4l2-core/v4l2-ioctl.c')
| -rw-r--r-- | drivers/media/v4l2-core/v4l2-ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c index 9a160283b3ae..6a5d1c6d11d6 100644 --- a/drivers/media/v4l2-core/v4l2-ioctl.c +++ b/drivers/media/v4l2-core/v4l2-ioctl.c @@ -476,7 +476,7 @@ static void v4l_print_buffer(const void *arg, bool write_only) const struct v4l2_plane *plane; int i; - pr_cont("%02d:%02d:%02d.%09ld index=%d, type=%s, request_fd=%d, flags=0x%08x, field=%s, sequence=%d, memory=%s", + pr_cont("%02d:%02d:%02d.%06ld index=%d, type=%s, request_fd=%d, flags=0x%08x, field=%s, sequence=%d, memory=%s", (int)p->timestamp.tv_sec / 3600, ((int)p->timestamp.tv_sec / 60) % 60, ((int)p->timestamp.tv_sec % 60), |
