[PATCH 03/21] drm/omap: Remove unnecessary display output sanity checks
Sebastian Reichel
sre at kernel.org
Mon Jun 11 14:03:58 UTC 2018
Hi,
On Wed, Jun 06, 2018 at 12:36:32PM +0300, Laurent Pinchart wrote:
> The omapdrm driver checks at suspend and resume time whether the
> displays it operates on have their driver operations set. This check is
> unneeded, as all display drivers set the driver operations field at
> probe time and never touch it afterwards. This is furthermore proven by
> the dereferencing of the driver field without checking it first in
> several locations.
>
> The omapdss driver performs a similar check at shutdown time. This is
> unneeded as well, as the for_each_dss_display() macro it uses to iterate
> over displays locates the displays by checking the driver field
> internally.
>
> As those checks are unnecessary, remove them.
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
> ---
Reviewed-by: Sebastian Reichel <sebastian.reichel at collabora.co.uk>
-- Sebastian
> drivers/gpu/drm/omapdrm/dss/dss.c | 3 ---
> drivers/gpu/drm/omapdrm/omap_drv.c | 6 ------
> 2 files changed, 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/omapdrm/dss/dss.c b/drivers/gpu/drm/omapdrm/dss/dss.c
> index d2760107ccf2..6118159dd571 100644
> --- a/drivers/gpu/drm/omapdrm/dss/dss.c
> +++ b/drivers/gpu/drm/omapdrm/dss/dss.c
> @@ -1552,9 +1552,6 @@ static void dss_shutdown(struct platform_device *pdev)
> DSSDBG("shutdown\n");
>
> for_each_dss_display(dssdev) {
> - if (!dssdev->driver)
> - continue;
> -
> if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE)
> dssdev->driver->disable(dssdev);
> }
> diff --git a/drivers/gpu/drm/omapdrm/omap_drv.c b/drivers/gpu/drm/omapdrm/omap_drv.c
> index c3c657d90029..e5b52fd4203e 100644
> --- a/drivers/gpu/drm/omapdrm/omap_drv.c
> +++ b/drivers/gpu/drm/omapdrm/omap_drv.c
> @@ -723,9 +723,6 @@ static int omap_drm_suspend_all_displays(struct drm_device *ddev)
> for (i = 0; i < priv->num_pipes; i++) {
> struct omap_dss_device *display = priv->pipes[i].display;
>
> - if (!display->driver)
> - continue;
> -
> if (display->state == OMAP_DSS_DISPLAY_ACTIVE) {
> display->driver->disable(display);
> display->activate_after_resume = true;
> @@ -745,9 +742,6 @@ static int omap_drm_resume_all_displays(struct drm_device *ddev)
> for (i = 0; i < priv->num_pipes; i++) {
> struct omap_dss_device *display = priv->pipes[i].display;
>
> - if (!display->driver)
> - continue;
> -
> if (display->activate_after_resume) {
> display->driver->enable(display);
> display->activate_after_resume = false;
> --
> Regards,
>
> Laurent Pinchart
>
> _______________________________________________
> dri-devel mailing list
> dri-devel at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20180611/a7fed1b4/attachment.sig>
More information about the dri-devel
mailing list