[Intel-gfx] [PATCH i-g-t v3 04/13] kms_sink_crc_basic: Use for_each_pipe_with_valid_output to find a valid config.
Maarten Lankhorst
maarten.lankhorst at linux.intel.com
Tue Jul 26 08:39:52 UTC 2016
PIPE_ANY was used here to assign the first valid pipe, this will no
longer be allowed, so explicitly set it.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst at linux.intel.com>
Reviewed-by: Ander Conselvan de Oliveira <conselvan2 at gmail.com>
---
tests/kms_sink_crc_basic.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/kms_sink_crc_basic.c b/tests/kms_sink_crc_basic.c
index 9fac958f2142..c332eb1e39c2 100644
--- a/tests/kms_sink_crc_basic.c
+++ b/tests/kms_sink_crc_basic.c
@@ -112,15 +112,15 @@ static void run_test(data_t *data)
igt_display_t *display = &data->display;
igt_output_t *output;
drmModeModeInfo *mode;
+ enum pipe pipe;
- for_each_connected_output(display, output) {
+ for_each_pipe_with_valid_output(display, pipe, output) {
drmModeConnectorPtr c = output->config.connector;
- if (c->connector_type != DRM_MODE_CONNECTOR_eDP ||
- c->connection != DRM_MODE_CONNECTED)
+ if (c->connector_type != DRM_MODE_CONNECTOR_eDP)
continue;
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
--
2.7.4
More information about the Intel-gfx
mailing list