summaryrefslogtreecommitdiff
path: root/tests/kms_panel_fitting.c
diff options
context:
space:
mode:
authorMatt Roper <matthew.d.roper@intel.com>2021-06-04 13:39:23 -0700
committerMatt Roper <matthew.d.roper@intel.com>2021-06-07 19:36:57 -0700
commit4f9258baaeeae9daa9583cfa7589d1c21668ce6b (patch)
treeec1a77e8332cc83b5d014bdd1100302b50eaa402 /tests/kms_panel_fitting.c
parentafaa6eee9d959c7e9be27f8c838b9019456e7e9f (diff)
lib/i915: Add intel_display_ver() and use it in display tests/libs
Display code should check the display version of the platform rather than the graphics version; on some platforms these versions won't be the same. v2: - Continue to use intel_gen() in draw_rect_blt() since it's checking the version of the blitter engine (graphics) rather than the display version. (Jose) - Rename some gen -> display_ver in kms_universal_plane too. (Jose) Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Diffstat (limited to 'tests/kms_panel_fitting.c')
-rw-r--r--tests/kms_panel_fitting.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/kms_panel_fitting.c b/tests/kms_panel_fitting.c
index 1623f34e..3e42d148 100644
--- a/tests/kms_panel_fitting.c
+++ b/tests/kms_panel_fitting.c
@@ -243,7 +243,7 @@ static void test_atomic_fastset(data_t *data)
if (stat("/sys/module/i915/parameters/fastboot", &sb) == 0)
igt_set_module_param_int(data->drm_fd, "fastboot", 1);
- igt_require(intel_gen(intel_get_drm_devid(display->drm_fd)) >= 5);
+ igt_require(intel_display_ver(intel_get_drm_devid(display->drm_fd)) >= 5);
}
igt_require(display->is_atomic);