Commit 66f59c5c authored by Ville Syrjälä's avatar Ville Syrjälä Committed by Daniel Vetter

drm/i915: Fix vblank count variable types

The vblank counts are u32 so make flip_queued_vblank and
flip_ready_vblank u32 as well.
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 20b20203
...@@ -834,8 +834,8 @@ struct intel_unpin_work { ...@@ -834,8 +834,8 @@ struct intel_unpin_work {
u32 flip_count; u32 flip_count;
u32 gtt_offset; u32 gtt_offset;
struct drm_i915_gem_request *flip_queued_req; struct drm_i915_gem_request *flip_queued_req;
int flip_queued_vblank; u32 flip_queued_vblank;
int flip_ready_vblank; u32 flip_ready_vblank;
bool enable_stall_check; bool enable_stall_check;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment