From d31b9b307f164668ddd23da6bef619c002e75a14 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Mon, 13 Jun 2016 15:43:15 +0200 Subject: tests/kms_rmfb: Use for_each_pipe_with_valid_output. Signed-off-by: Maarten Lankhorst --- tests/kms_rmfb.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'tests/kms_rmfb.c') diff --git a/tests/kms_rmfb.c b/tests/kms_rmfb.c index a3fde9f4..89aa3232 100644 --- a/tests/kms_rmfb.c +++ b/tests/kms_rmfb.c @@ -144,12 +144,9 @@ run_rmfb_test(struct rmfb_data *data, bool reopen) int valid_tests = 0; enum pipe pipe; - for_each_connected_output(&data->display, output) { - for_each_pipe(&data->display, pipe) { - if (test_rmfb(data, output, pipe, reopen)) - valid_tests++; - } - } + for_each_pipe_with_valid_output(&data->display, pipe, output) + if (test_rmfb(data, output, pipe, reopen)) + valid_tests++; igt_require_f(valid_tests, "no valid crtc/connector combinations found\n"); } -- cgit v1.2.3