Add changes reflecting the new support for dynamic number of planes per pipe. Signed-off-by: Robert Foss <robert.foss@xxxxxxxxxxxxx> --- tests/kms_fbc_crc.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/kms_fbc_crc.c b/tests/kms_fbc_crc.c index a696e124..d2c76fb1 100644 --- a/tests/kms_fbc_crc.c +++ b/tests/kms_fbc_crc.c @@ -372,7 +372,7 @@ static bool prepare_test(data_t *data, enum test_mode test_mode) igt_output_t *output = data->output; igt_pipe_crc_t *pipe_crc; - data->primary = igt_output_get_plane(data->output, IGT_PLANE_PRIMARY); + data->primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); create_fbs(data, true, data->fb); @@ -457,10 +457,11 @@ static void finish_crtc(data_t *data, enum test_mode mode) static void reset_display(data_t *data) { igt_display_t *display = &data->display; - enum pipe pipe; + enum pipe pipe_type; - for_each_pipe(display, pipe) { - igt_plane_t *plane = &display->pipes[pipe].planes[IGT_PLANE_PRIMARY]; + for_each_pipe(display, pipe_type) { + igt_pipe_t *pipe = &display->pipes[pipe_type]; + igt_plane_t *plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); if (plane->fb) igt_plane_set_fb(plane, NULL); -- 2.11.0 _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx