Commit 58839803 authored by Eric Anholt's avatar Eric Anholt
Browse files

drm/vc4: Fix NULL deref in HDMI init error path



If you make it here other than through err_destroy_encoder, vc4->hdmi
is still NULL.

Signed-off-by: default avatarEric Anholt <eric@anholt.net>
parent 08302c35
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -573,7 +573,7 @@ err_unprepare_hsm:
err_unprepare_pix:
	clk_disable_unprepare(hdmi->pixel_clock);
err_put_i2c:
	put_device(&vc4->hdmi->ddc->dev);
	put_device(&hdmi->ddc->dev);

	return ret;
}