From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by gabe.freedesktop.org (Postfix) with ESMTPS id 789CE6E314 for ; Sat, 11 Jul 2020 20:06:18 +0000 (UTC) From: Mohammed Khajapasha Date: Sun, 12 Jul 2020 01:35:55 +0530 Message-Id: <20200711200602.3217-5-mohammed.khajapasha@intel.com> In-Reply-To: <20200711200602.3217-1-mohammed.khajapasha@intel.com> References: <20200711200602.3217-1-mohammed.khajapasha@intel.com> MIME-Version: 1.0 Subject: [igt-dev] [PATCH i-g-t 04/11] tests/kms_lease: Get pipe from crtc for enable pipes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" To: igt-dev@lists.freedesktop.org, arkadiusz.hiler@intel.com List-ID: Get pipe from drm crtc for enabled pipes only. Signed-off-by: Mohammed Khajapasha --- tests/kms_lease.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/kms_lease.c b/tests/kms_lease.c index 2e6cf9b0..75a1149c 100644 --- a/tests/kms_lease.c +++ b/tests/kms_lease.c @@ -684,6 +684,8 @@ static void lease_unleased_crtc(data_t *data) /* Find another CRTC that we don't control */ bad_crtc_id = 0; for (p = 0; bad_crtc_id == 0 && p < data->master.display.n_pipes; p++) { + if(!(data->master.display.pipes[p].enabled)) + continue; if (pipe_to_crtc_id(&data->master.display, p) != data->crtc_id) bad_crtc_id = pipe_to_crtc_id(&data->master.display, p); } -- 2.24.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev