OSDN Git Service

drm/i915: Move encoder variable to tighter scope
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 15 Jan 2020 19:08:13 +0000 (21:08 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Mon, 20 Jan 2020 15:04:33 +0000 (17:04 +0200)
Let's not pollute the function scope with variables when they're
only needed inside some loops.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200115190813.17971-5-ville.syrjala@linux.intel.com
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
drivers/gpu/drm/i915/display/intel_display.c

index 97cf845..76c1734 100644 (file)
@@ -13070,7 +13070,6 @@ intel_modeset_pipe_config(struct intel_crtc_state *pipe_config)
 {
        struct drm_crtc *crtc = pipe_config->uapi.crtc;
        struct drm_atomic_state *state = pipe_config->uapi.state;
-       struct intel_encoder *encoder;
        struct drm_connector *connector;
        struct drm_connector_state *connector_state;
        int base_bpp, ret;
@@ -13113,11 +13112,12 @@ intel_modeset_pipe_config(struct intel_crtc_state *pipe_config)
                               &pipe_config->pipe_src_h);
 
        for_each_new_connector_in_state(state, connector, connector_state, i) {
+               struct intel_encoder *encoder =
+                       to_intel_encoder(connector_state->best_encoder);
+
                if (connector_state->crtc != crtc)
                        continue;
 
-               encoder = to_intel_encoder(connector_state->best_encoder);
-
                if (!check_single_encoder_cloning(state, to_intel_crtc(crtc), encoder)) {
                        DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
                        return -EINVAL;
@@ -13167,6 +13167,9 @@ encoder_retry:
         * a chance to reject the mode entirely.
         */
        for_each_new_connector_in_state(state, connector, connector_state, i) {
+               struct intel_encoder *encoder =
+                       to_intel_encoder(connector_state->best_encoder);
+
                if (connector_state->crtc != crtc)
                        continue;
 
@@ -13178,7 +13181,6 @@ encoder_retry:
                        return ret;
                }
 
-               encoder = to_intel_encoder(connector_state->best_encoder);
                ret = encoder->compute_config(encoder, pipe_config,
                                              connector_state);
                if (ret < 0) {