summaryrefslogtreecommitdiff
path: root/tests/kms_plane_scaling.c
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-03-11 15:31:49 +0200
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-03-12 15:21:16 +0200
commite0537c6a995b753e7c44b933fc52b307866bd876 (patch)
tree99f39c9791b3043b07935708f923ab58dd072f34 /tests/kms_plane_scaling.c
parenta550e7d1a657b78196498ef69743bef10f840434 (diff)
tests/kms_plane_scaling: Rip out unused igt_pipe_crc_t
It's set up for capture and then freed but never used. Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/kms_plane_scaling.c')
-rw-r--r--tests/kms_plane_scaling.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 1015c80c..d408a203 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -33,7 +33,6 @@ typedef struct {
int drm_fd;
igt_display_t display;
igt_crc_t ref_crc;
- igt_pipe_crc_t *pipe_crc;
int image_w;
int image_h;
@@ -72,8 +71,6 @@ static void cleanup_fbs(data_t *data)
static void cleanup_crtc(data_t *data)
{
igt_display_reset(&data->display);
- igt_pipe_crc_free(data->pipe_crc);
- data->pipe_crc = NULL;
cleanup_fbs(data);
}
@@ -89,9 +86,6 @@ static void prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe,
igt_output_set_pipe(output, pipe);
- /* create the pipe_crc object for this pipe */
- data->pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe, INTEL_PIPE_CRC_SOURCE_AUTO);
-
igt_skip_on(!igt_display_has_format_mod(display, DRM_FORMAT_XRGB8888,
tiling));
@@ -566,7 +560,6 @@ igt_main
igt_fixture {
data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_AMDGPU);
- igt_require_pipe_crc(data.drm_fd);
igt_display_require(&data.display, data.drm_fd);
data.devid = is_i915_device(data.drm_fd) ?
intel_get_drm_devid(data.drm_fd) : 0;