Commit c39721c7 authored by Chris Wilson's avatar Chris Wilson Committed by Dave Airlie

drm/vmgfx: operation on ‘par->dirty.y1’ may be undefined

Trivial fix to set y1 = y2 = 0.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Cc: Jakob Bornecrantz <jakob@vmware.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 90c1efdd
...@@ -528,7 +528,7 @@ int vmw_fb_init(struct vmw_private *vmw_priv) ...@@ -528,7 +528,7 @@ int vmw_fb_init(struct vmw_private *vmw_priv)
* Dirty & Deferred IO * Dirty & Deferred IO
*/ */
par->dirty.x1 = par->dirty.x2 = 0; par->dirty.x1 = par->dirty.x2 = 0;
par->dirty.y1 = par->dirty.y1 = 0; par->dirty.y1 = par->dirty.y2 = 0;
par->dirty.active = true; par->dirty.active = true;
spin_lock_init(&par->dirty.lock); spin_lock_init(&par->dirty.lock);
info->fbdefio = &vmw_defio; info->fbdefio = &vmw_defio;
......
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