Message ID | 20181013102140.GB16086@mwanda (mailing list archive) |
---|---|
State | Accepted |
Commit | 8727b230f665cadb9349a915c60e6abb18fb083c |
Headers | show |
Series | drm/exynos: checking for NULL instead of IS_ERR() | expand |
On 13.10.2018 12:21, Dan Carpenter wrote: > The of_drm_find_panel() function returns error pointers and never NULL > but we the driver assumes that ->panel is NULL when it's not present. > > Fixes: 6afb7721e2a0 ("drm/exynos: move connector creation to attach callback") > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Thanks for spotting it (and sorry for previous reply mistake). Reviewed-by: Andrzej Hajda <a.hajda@samsung.com> -- Regards Andrzej > > diff --git a/drivers/gpu/drm/exynos/exynos_drm_dsi.c b/drivers/gpu/drm/exynos/exynos_drm_dsi.c > index 07af7758066d..32f256749789 100644 > --- a/drivers/gpu/drm/exynos/exynos_drm_dsi.c > +++ b/drivers/gpu/drm/exynos/exynos_drm_dsi.c > @@ -1527,7 +1527,9 @@ static int exynos_dsi_host_attach(struct mipi_dsi_host *host, > } > > dsi->panel = of_drm_find_panel(device->dev.of_node); > - if (dsi->panel) { > + if (IS_ERR(dsi->panel)) { > + dsi->panel = NULL; > + } else { > drm_panel_attach(dsi->panel, &dsi->connector); > dsi->connector.status = connector_status_connected; > } > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel >
diff --git a/drivers/gpu/drm/exynos/exynos_drm_dsi.c b/drivers/gpu/drm/exynos/exynos_drm_dsi.c index 07af7758066d..32f256749789 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_dsi.c +++ b/drivers/gpu/drm/exynos/exynos_drm_dsi.c @@ -1527,7 +1527,9 @@ static int exynos_dsi_host_attach(struct mipi_dsi_host *host, } dsi->panel = of_drm_find_panel(device->dev.of_node); - if (dsi->panel) { + if (IS_ERR(dsi->panel)) { + dsi->panel = NULL; + } else { drm_panel_attach(dsi->panel, &dsi->connector); dsi->connector.status = connector_status_connected; }
The of_drm_find_panel() function returns error pointers and never NULL but we the driver assumes that ->panel is NULL when it's not present. Fixes: 6afb7721e2a0 ("drm/exynos: move connector creation to attach callback") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>