Commit 7482a656 authored by katrinzhou's avatar katrinzhou Committed by Tvrtko Ursulin

drm/i915/gem: add missing else

Add missing else in set_proto_ctx_param() to fix coverity issue.

Addresses-Coverity: ("Unused value")
Fixes: d4433c76 ("drm/i915/gem: Use the proto-context to handle create parameters (v5)")
Suggested-by: default avatarTvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: default avatarkatrinzhou <katrinzhou@tencent.com>
[tursulin: fixup alignment]
Signed-off-by: default avatarTvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220621124926.615884-1-tvrtko.ursulin@linux.intel.com
parent 14d6a086
...@@ -933,8 +933,9 @@ static int set_proto_ctx_param(struct drm_i915_file_private *fpriv, ...@@ -933,8 +933,9 @@ static int set_proto_ctx_param(struct drm_i915_file_private *fpriv,
case I915_CONTEXT_PARAM_PERSISTENCE: case I915_CONTEXT_PARAM_PERSISTENCE:
if (args->size) if (args->size)
ret = -EINVAL; ret = -EINVAL;
ret = proto_context_set_persistence(fpriv->dev_priv, pc, else
args->value); ret = proto_context_set_persistence(fpriv->dev_priv, pc,
args->value);
break; break;
case I915_CONTEXT_PARAM_PROTECTED_CONTENT: case I915_CONTEXT_PARAM_PROTECTED_CONTENT:
......
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