summaryrefslogtreecommitdiff
path: root/lib/igt_kms.h
diff options
context:
space:
mode:
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2017-09-27 12:25:37 +0200
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2017-10-03 09:39:40 +0200
commit76c7a71a13fd21fbf58ec2903c25acc980b7ddaf (patch)
tree6061d06f73320d2a4a9ad4d5ac1a63c7ea76315a /lib/igt_kms.h
parentb5404f8435f828ca039a2e46be629b3d4c92465b (diff)
lib/igt_kms: Change output->pending_crtc_idx_mask to output->pending_pipe
igt_output_set_pipe with PIPE_ANY used to mean that we bind the output to any pipe, but this is now a deprecated alias for PIPE_NONE, and means the output will be unbound. Because of this it's better to change output->pending_crtc_idx_mask to an enum pipe, because only a single choice may be given for a pipe. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Reviewed-by: Mika Kahola <mika.kahola@intel.com>
Diffstat (limited to 'lib/igt_kms.h')
-rw-r--r--lib/igt_kms.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 62197dcf..8dc118c9 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -361,7 +361,7 @@ typedef struct {
struct kmstest_connector_config config;
char *name;
bool force_reprobe;
- unsigned long pending_crtc_idx_mask;
+ enum pipe pending_pipe;
bool use_override_mode;
drmModeModeInfo override_mode;
} igt_output_t;