summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/vmwgfx
diff options
context:
space:
mode:
authorThomas Hellstrom <thellstrom@vmware.com>2015-08-04 13:37:16 (GMT)
committerThomas Hellstrom <thellstrom@vmware.com>2015-08-05 12:01:12 (GMT)
commit6a5278ee34e7fd4b051fd107a94a099778458d8c (patch)
treeef36fb4e225f3da253bb1901c175d1fdf981f580 /drivers/gpu/drm/vmwgfx
parent2e3cc8cff629c9697ac27c95a89dda7c7785b6b4 (diff)
downloadlinux-6a5278ee34e7fd4b051fd107a94a099778458d8c.tar.xz
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.c2
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 afc6d1d..5667c13 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) {