summaryrefslogtreecommitdiff
path: root/tests/kms_properties.c
diff options
context:
space:
mode:
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2017-03-15 14:39:03 +0100
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2017-03-15 14:39:10 +0100
commit32c4b69a9d18ad7ec62f3e656a08f3325fb942c9 (patch)
tree81ba76d43c626e2bbde68b9ee0f122527d0f1a82 /tests/kms_properties.c
parentf6eba0b5cfd93ca92007e2071b8ad4a52185e26a (diff)
kms_properties: Blacklist legacy link-status connector property.
This will be fixed by converting all connectors to atomic, but this fails for now. Blacklist it just like crtc_id temporarily. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Diffstat (limited to 'tests/kms_properties.c')
-rw-r--r--tests/kms_properties.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/kms_properties.c b/tests/kms_properties.c
index 8e244473..591e1a01 100644
--- a/tests/kms_properties.c
+++ b/tests/kms_properties.c
@@ -75,7 +75,8 @@ static bool ignore_connector_property(const char *name, bool atomic)
return true;
/* FIXME: Remove when all intel connectors are converted to atomic. */
- if (!atomic && !strcmp(name, "CRTC_ID"))
+ if (!atomic && (!strcmp(name, "CRTC_ID") ||
+ !strcmp(name, "link-status")))
return true;
if (atomic && !strcmp(name, "DPMS"))