From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by gabe.freedesktop.org (Postfix) with ESMTPS id 1924D6E98D for ; Fri, 27 Aug 2021 14:58:03 +0000 (UTC) From: Imre Deak Date: Fri, 27 Aug 2021 17:57:53 +0300 Message-Id: <20210827145756.3342904-4-imre.deak@intel.com> In-Reply-To: <20210827145756.3342904-1-imre.deak@intel.com> References: <20210827145756.3342904-1-imre.deak@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t 3/6] tests/kms_ccs: Fix small aux stride subtest List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" To: igt-dev@lists.freedesktop.org List-ID: Use the correct CCS plane stride for the small aux stride subtest. Signed-off-by: Imre Deak --- tests/kms_ccs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c index 5bc50b4bb..52252c633 100644 --- a/tests/kms_ccs.c +++ b/tests/kms_ccs.c @@ -307,7 +307,7 @@ static void generate_fb(data_t *data, struct igt_fb *fb, if (fb_flags & FB_SMALL_AUX_STRIDE) { igt_skip_on_f(width <= 1024, "FB already has the smallest possible stride\n"); - f.pitches[index] = ALIGN(f.pitches[1]/2, 128); + f.pitches[index] = ALIGN(f.pitches[index]/2, 128); } if (fb_flags & FB_ZERO_AUX_STRIDE) -- 2.27.0