drm/exynos: fix a potential error pointer dereference
[ Upstream commit 73bf1c9ae6c054c53b8e84452c5e46f86dd28246 ] Smatch reports the warning below: drivers/gpu/drm/exynos/exynos_hdmi.c:1864 hdmi_bind() error: 'crtc' dereferencing possible ERR_PTR() The return value of exynos_drm_crtc_get_by_type maybe ERR_PTR(-ENODEV), which can not be used directly. Fix this by checking the return value before using it. Signed-off-by: Xiang Yang <xiangyang3@huawei.com> Signed-off-by: Inki Dae <inki.dae@samsung.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
fb2f34d939
commit
0fc35b0d9f
@@ -1849,6 +1849,8 @@ static int hdmi_bind(struct device *dev, struct device *master, void *data)
|
|||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
crtc = exynos_drm_crtc_get_by_type(drm_dev, EXYNOS_DISPLAY_TYPE_HDMI);
|
crtc = exynos_drm_crtc_get_by_type(drm_dev, EXYNOS_DISPLAY_TYPE_HDMI);
|
||||||
|
if (IS_ERR(crtc))
|
||||||
|
return PTR_ERR(crtc);
|
||||||
crtc->pipe_clk = &hdata->phy_clk;
|
crtc->pipe_clk = &hdata->phy_clk;
|
||||||
|
|
||||||
ret = hdmi_create_connector(encoder);
|
ret = hdmi_create_connector(encoder);
|
||||||
|
Reference in New Issue
Block a user