diff options
author | Sakari Ailus <sakari.ailus@iki.fi> | 2012-09-15 14:14:42 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-12-21 07:56:43 -0500 |
commit | 8e6057b510aad354e017c6dfca7f386a0eb91b63 (patch) | |
tree | ac76cc2593f255325972f05bde025954f2d3b41c /drivers/media/usb/sn9c102 | |
parent | abd23295648a9e3ae72a806e70a510d3dcd8b374 (diff) |
[media] v4l: Convert drivers to use monotonic timestamps
Convert drivers using wall clock time (CLOCK_REALTIME) to timestamp from the
monotonic timer (CLOCK_MONOTONIC).
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb/sn9c102')
-rw-r--r-- | drivers/media/usb/sn9c102/sn9c102_core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/usb/sn9c102/sn9c102_core.c b/drivers/media/usb/sn9c102/sn9c102_core.c index 73605864fffa..8dbf0c721c4a 100644 --- a/drivers/media/usb/sn9c102/sn9c102_core.c +++ b/drivers/media/usb/sn9c102/sn9c102_core.c | |||
@@ -773,7 +773,8 @@ end_of_frame: | |||
773 | img); | 773 | img); |
774 | 774 | ||
775 | if ((*f)->buf.bytesused == 0) | 775 | if ((*f)->buf.bytesused == 0) |
776 | do_gettimeofday(&(*f)->buf.timestamp); | 776 | v4l2_get_timestamp( |
777 | &(*f)->buf.timestamp); | ||
777 | 778 | ||
778 | (*f)->buf.bytesused += img; | 779 | (*f)->buf.bytesused += img; |
779 | 780 | ||