drm: drop unused drm_crtc callback
authorSam Ravnborg <sam@ravnborg.org>
Sat, 15 Feb 2020 17:33:42 +0000 (18:33 +0100)
committerSam Ravnborg <sam@ravnborg.org>
Sat, 15 Feb 2020 20:15:17 +0000 (21:15 +0100)
struct drm_encoder_helper_funcs included a callback
named drm_crtc.

There are no users left - so drop it.
There was one reference in drm_crtc_helper.c,
which checked if the value was not NULL.
As it was never assigned this check could be dropped.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20200215173342.GA7458@ravnborg.org
drivers/gpu/drm/drm_crtc_helper.c
include/drm/drm_modeset_helper_vtables.h

index 93a4eec..a4d36ac 100644 (file)
@@ -244,10 +244,6 @@ drm_crtc_prepare_encoders(struct drm_device *dev)
                /* Disable unused encoders */
                if (encoder->crtc == NULL)
                        drm_encoder_disable(encoder);
-               /* Disable encoders whose CRTC is about to change */
-               if (encoder_funcs->get_crtc &&
-                   encoder->crtc != (*encoder_funcs->get_crtc)(encoder))
-                       drm_encoder_disable(encoder);
        }
 }
 
index 0afaf58..7c20b1c 100644 (file)
@@ -693,22 +693,6 @@ struct drm_encoder_helper_funcs {
                                struct drm_connector_state *conn_state);
 
        /**
-        * @get_crtc:
-        *
-        * This callback is used by the legacy CRTC helpers to work around
-        * deficiencies in its own book-keeping.
-        *
-        * Do not use, use atomic helpers instead, which get the book keeping
-        * right.
-        *
-        * FIXME:
-        *
-        * Currently only nouveau is using this, and as soon as nouveau is
-        * atomic we can ditch this hook.
-        */
-       struct drm_crtc *(*get_crtc)(struct drm_encoder *encoder);
-
-       /**
         * @detect:
         *
         * This callback can be used by drivers who want to do detection on the