Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -834,8 +834,8 @@ struct intel_unpin_work {
	u32 flip_count;
	u32 gtt_offset;
	struct drm_i915_gem_request *flip_queued_req;
	int flip_queued_vblank;
	int flip_ready_vblank;
	u32 flip_queued_vblank;
	u32 flip_ready_vblank;
	bool enable_stall_check;
};