From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (unknown [192.55.52.88]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3754510E549 for ; Wed, 2 Aug 2023 10:28:35 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Wed, 2 Aug 2023 15:50:52 +0530 Message-Id: <20230802102059.3650360-11-bhanuprakash.modem@intel.com> In-Reply-To: <20230802102059.3650360-1-bhanuprakash.modem@intel.com> References: <20230802102059.3650360-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [i-g-t V2 10/17] tests/i915/kms_draw_crc: Add tiling support for XE List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: Remove the tiling restrictions in Xe specific tests f6d0bacc0 (tests/i915/kms_draw_crc: Add XE support) Signed-off-by: Bhanuprakash Modem --- tests/i915/kms_draw_crc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/i915/kms_draw_crc.c b/tests/i915/kms_draw_crc.c index 01ecb7bb9..d361e7176 100644 --- a/tests/i915/kms_draw_crc.c +++ b/tests/i915/kms_draw_crc.c @@ -295,10 +295,6 @@ igt_main for (modifier_idx = 0; modifier_idx < ARRAY_SIZE(modifiers); modifier_idx++) { modifier = modifiers[modifier_idx]; - /* No tiling support in XE. */ - if (is_xe_device(drm_fd) && modifier != DRM_FORMAT_MOD_LINEAR) - continue; - for (format_idx = 0; format_idx < ARRAY_SIZE(formats); format_idx++) { if (!igt_display_has_format_mod(&display, formats[format_idx], modifier)) continue; -- 2.40.0