diff options
author | Thomas Hellstrom | 2015-08-04 15:37:16 +0200 |
---|---|---|
committer | Thomas Hellstrom | 2015-08-05 14:01:12 +0200 |
commit | 6a5278ee34e7fd4b051fd107a94a099778458d8c (patch) | |
tree | ef36fb4e225f3da253bb1901c175d1fdf981f580 /drivers/gpu/drm/vmwgfx | |
parent | 2e3cc8cff629c9697ac27c95a89dda7c7785b6b4 (diff) |
drm/vmwgfx: Fix an uninitialized value
Reported by Intel's kbuild robot.
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Sinclair Yeh <syeh@vmware.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'drivers/gpu/drm/vmwgfx')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.c b/drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.c index afc6d1df47d7..5667c134e409 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.c @@ -507,7 +507,7 @@ static void vmw_cmdbuf_work_func(struct work_struct *work) struct vmw_cmdbuf_man *man = container_of(work, struct vmw_cmdbuf_man, work); struct vmw_cmdbuf_header *entry, *next; - bool restart; + bool restart = false; spin_lock_bh(&man->lock); list_for_each_entry_safe(entry, next, &man->error, list) { |