diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-10-04 18:49:53 +0100 |
---|---|---|
committer | Thomas Hellstrom <thellstrom@vmware.com> | 2018-12-12 12:01:05 +0100 |
commit | e06d45d8c165a0b1a7aaa1b794c78d2db911c8f6 (patch) | |
tree | fb914fc5788396eed6d6049ebf5e6811ace8cb3a /drivers/gpu | |
parent | 73b6f96cbc0162787bcbdac5f538167084c8d605 (diff) | |
download | linux-e06d45d8c165a0b1a7aaa1b794c78d2db911c8f6.tar.gz linux-e06d45d8c165a0b1a7aaa1b794c78d2db911c8f6.tar.bz2 linux-e06d45d8c165a0b1a7aaa1b794c78d2db911c8f6.zip |
drm/vmwgfx: remove redundant return ret statement
The return statement is redundant as there is a return statement
immediately before it so we have dead code that can be removed.
Also remove the unused declaration of ret.
Detected by CoverityScan, CID#1473793 ("Structurally dead code")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c index 5a6b70ba137a..260650bb5560 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c @@ -1738,7 +1738,6 @@ static int vmw_cmd_check_define_gmrfb(struct vmw_private *dev_priv, void *buf) { struct vmw_buffer_object *vmw_bo; - int ret; struct { uint32_t header; @@ -1748,7 +1747,6 @@ static int vmw_cmd_check_define_gmrfb(struct vmw_private *dev_priv, return vmw_translate_guest_ptr(dev_priv, sw_context, &cmd->body.ptr, &vmw_bo); - return ret; } |