Commit 3385375b authored by Suraj Kandpal's avatar Suraj Kandpal Committed by Andi Shyti

drm/i915/ddi: Remove redundant intel_connector NULL check

Remove redundant intel_connector NULL check. Having it here just
creates further confusion and also the variable already gets
dereferenced before the aforementioned NULL check
Signed-off-by: default avatarSuraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: default avatarAndi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: default avatarAndi Shyti <andi.shyti@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231006072830.581487-1-suraj.kandpal@intel.com
parent ae2b1c38
...@@ -4333,7 +4333,7 @@ static int intel_hdmi_reset_link(struct intel_encoder *encoder, ...@@ -4333,7 +4333,7 @@ static int intel_hdmi_reset_link(struct intel_encoder *encoder,
u8 config; u8 config;
int ret; int ret;
if (!connector || connector->base.status != connector_status_connected) if (connector->base.status != connector_status_connected)
return 0; return 0;
ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex, ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex,
......
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