summaryrefslogtreecommitdiff
path: root/tests/kms_properties.c
diff options
context:
space:
mode:
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2017-02-27 13:08:41 +0100
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2017-02-27 13:08:41 +0100
commita9dcd63441648d3f556ee80b77ea4c5b0c058964 (patch)
tree3347bb4f27eb2fc44f1d0b594600a47b609d76d2 /tests/kms_properties.c
parenteb53664b5dddfa9deaf3810eaa5937c537820a05 (diff)
kms_properties: Ignore CRTC_ID for the legacy case
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Diffstat (limited to 'tests/kms_properties.c')
-rw-r--r--tests/kms_properties.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/kms_properties.c b/tests/kms_properties.c
index a86371c0..8e244473 100644
--- a/tests/kms_properties.c
+++ b/tests/kms_properties.c
@@ -74,6 +74,10 @@ static bool ignore_connector_property(const char *name, bool atomic)
!strcmp(name, "TILE"))
return true;
+ /* FIXME: Remove when all intel connectors are converted to atomic. */
+ if (!atomic && !strcmp(name, "CRTC_ID"))
+ return true;
+
if (atomic && !strcmp(name, "DPMS"))
return true;