Skip to content

Commit

Permalink
drm/i915: outstanding_lazy_request is a u32
Browse files Browse the repository at this point in the history
So don't assign it false, that's just confusing ... No functional
change here.

Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Daniel Vetter committed Feb 13, 2012
1 parent 67a3744 commit 5391d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/i915_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,7 @@ i915_add_request(struct intel_ring_buffer *ring,
spin_unlock(&file_priv->mm.lock);
}

ring->outstanding_lazy_request = false;
ring->outstanding_lazy_request = 0;

if (!dev_priv->mm.suspended) {
if (i915_enable_hangcheck) {
Expand Down

0 comments on commit 5391d0c

Please sign in to comment.