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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4333,7 +4333,7 @@ static int intel_hdmi_reset_link(struct intel_encoder *encoder,
	u8 config;
	int ret;

	if (!connector || connector->base.status != connector_status_connected)
	if (connector->base.status != connector_status_connected)
		return 0;

	ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex,