]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/i915: Make intel_fuzzy_clock_check() take in arbitrary clocks
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Fri, 6 Sep 2013 20:29:02 +0000 (23:29 +0300)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 13 Sep 2013 12:54:22 +0000 (14:54 +0200)
We want to do fuzzy clock checks for other things besides
adjusted_mode.clock, so just pass two two clocks to compare
to intel_fuzzy_clock_check().

Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_display.c

index a4f24346d0bef947247f1d3f2975d287990a29d9..b8d409f5ead3ed4ea207cdb7814051b9430dab93 100644 (file)
@@ -8584,13 +8584,9 @@ intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
 
 }
 
-static bool intel_fuzzy_clock_check(struct intel_crtc_config *cur,
-                                   struct intel_crtc_config *new)
+static bool intel_fuzzy_clock_check(int clock1, int clock2)
 {
-       int clock1, clock2, diff;
-
-       clock1 = cur->adjusted_mode.clock;
-       clock2 = new->adjusted_mode.clock;
+       int diff;
 
        if (clock1 == clock2)
                return true;
@@ -8722,7 +8718,8 @@ intel_pipe_config_compare(struct drm_device *dev,
 #undef PIPE_CONF_QUIRK
 
        if (!IS_HASWELL(dev)) {
-               if (!intel_fuzzy_clock_check(current_config, pipe_config)) {
+               if (!intel_fuzzy_clock_check(current_config->adjusted_mode.clock,
+                                            pipe_config->adjusted_mode.clock)) {
                        DRM_ERROR("mismatch in clock (expected %d, found %d)\n",
                                  current_config->adjusted_mode.clock,
                                  pipe_config->adjusted_mode.clock);