diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2013-10-15 18:55:30 +0100 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-10-16 13:32:10 +0200 |
commit | ac2300d4d5c2e9e4d82361a582cf1df3ec22fec7 (patch) | |
tree | 04855d7b5bfe3d5adf561a20f5430814515c3869 /drivers/gpu/drm/i915/i915_drv.h | |
parent | b2c88f5b1dea77b57759387728917a124eb1c098 (diff) | |
download | lwn-ac2300d4d5c2e9e4d82361a582cf1df3ec22fec7.tar.gz lwn-ac2300d4d5c2e9e4d82361a582cf1df3ec22fec7.zip |
drm/i915: Sample the frame counter instead of a timestamp for CRCs
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index a29a4a1d300a..f8a36d038457 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -1226,7 +1226,7 @@ enum intel_pipe_crc_source { }; struct intel_pipe_crc_entry { - uint32_t timestamp; + uint32_t frame; uint32_t crc[5]; }; |