Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e06d45d8 authored by Colin Ian King's avatar Colin Ian King Committed by Thomas Hellstrom
Browse files

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: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarThomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: default avatarThomas Hellstrom <thellstrom@vmware.com>
parent 73b6f96c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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;
}