projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20b2020
)
drm/i915: Fix vblank count variable types
author
Ville Syrjälä
<ville.syrjala@linux.intel.com>
Mon, 14 Sep 2015 19:43:46 +0000
(22:43 +0300)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Thu, 24 Sep 2015 18:14:22 +0000
(20:14 +0200)
The vblank counts are u32 so make flip_queued_vblank and
flip_ready_vblank u32 as well.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_drv.h
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/intel_drv.h
b/drivers/gpu/drm/i915/intel_drv.h
index
bfd1204
..
354432f
100644
(file)
--- a/
drivers/gpu/drm/i915/intel_drv.h
+++ b/
drivers/gpu/drm/i915/intel_drv.h
@@
-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;
};