]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/i915: introduce macros to check pipe config properties
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 19 Apr 2013 09:25:34 +0000 (11:25 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 29 Apr 2013 19:51:18 +0000 (21:51 +0200)
This code will get _really_ repetive, and we'll end up with tons more
of this kind. So extract the common patterns.

This should also help when we add a lazy pipe_config compare mode for
fastboot.

Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_display.c

index 467c77bc7cb9e06f4bf173ba38c9c9542c740520..2c3cbec75b4e484efdd55f1215d7390524f5a9fb 100644 (file)
@@ -7949,21 +7949,19 @@ static bool
 intel_pipe_config_compare(struct intel_crtc_config *current_config,
                          struct intel_crtc_config *pipe_config)
 {
-       if (current_config->has_pch_encoder != pipe_config->has_pch_encoder) {
-               DRM_ERROR("mismatch in has_pch_encoder "
-                         "(expected %i, found %i)\n",
-                         current_config->has_pch_encoder,
-                         pipe_config->has_pch_encoder);
-               return false;
+#define PIPE_CONF_CHECK_I(name)        \
+       if (current_config->name != pipe_config->name) { \
+               DRM_ERROR("mismatch in " #name " " \
+                         "(expected %i, found %i)\n", \
+                         current_config->name, \
+                         pipe_config->name); \
+               return false; \
        }
 
-       if (current_config->fdi_lanes != pipe_config->fdi_lanes) {
-               DRM_ERROR("mismatch in fdi_lanes "
-                         "(expected %i, found %i)\n",
-                         current_config->fdi_lanes,
-                         pipe_config->fdi_lanes);
-               return false;
-       }
+       PIPE_CONF_CHECK_I(has_pch_encoder);
+       PIPE_CONF_CHECK_I(fdi_lanes);
+
+#undef PIPE_CONF_CHECK_I
 
        return true;
 }