From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 81234C3ABCC for ; Tue, 13 May 2025 13:45:26 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id EE48710E5A7; Tue, 13 May 2025 13:45:25 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="gCT+qWEn"; dkim-atps=neutral Received: from nyc.source.kernel.org (nyc.source.kernel.org [147.75.193.91]) by gabe.freedesktop.org (Postfix) with ESMTPS id 163BA10E5AD for ; Tue, 13 May 2025 13:45:24 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by nyc.source.kernel.org (Postfix) with ESMTP id 3AFDEA4D896; Tue, 13 May 2025 13:45:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 34A84C4CEE4; Tue, 13 May 2025 13:45:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1747143922; bh=wyi1K/mQRKcgeOduClrr92m+zGYgb865V9MDCljrAU0=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=gCT+qWEnhoVeMeiAsPNKDC9o504ET0alM79BTkA7vosEN30Qr4j2W3/vRpl2DIpR8 NkVFsHs0N1kuaj66z3NhbKh4XMjq6Yq0+knkmc2kgfnc0inWWF7kEf8rftILt6SGXT ipYCxmXLV2ltwpqzh4HhwQXH5MbwJAThrAI7/xts2PbMLMhDy3OUQkmSk83qnRMcg3 4pexeA7ETGmrsUBnoB/q2AFQz26V88AF2cwQjo1KMUowCahiMZk8eVVQ0+ZJEihaoE 8gHK0TSAh6n3aiPG3mcxVrsLvtSJq3NuiV1lAzdfsbWg/Tu9g21Wbgflr+K5AiNQYO V3xGDIq9K+FFQ== Message-ID: <5f8954e7cf2aa2e2d61588ecb15c4c4b@kernel.org> Date: Tue, 13 May 2025 13:45:19 +0000 From: "Maxime Ripard" To: "Cristian Ciocaltea" Subject: Re: [PATCH v4 08/23] drm/tests: hdmi: Add macro to simplify EDID setup In-Reply-To: <20250425-hdmi-conn-yuv-v4-8-5e55e2aaa3fa@collabora.com> References: <20250425-hdmi-conn-yuv-v4-8-5e55e2aaa3fa@collabora.com> Cc: dri-devel@lists.freedesktop.org, kernel@collabora.com, linux-kernel@vger.kernel.org, "Dave Stevenson" , "David Airlie" , "Dmitry Baryshkov" , "Dmitry Baryshkov" , "Maarten Lankhorst" , "Maxime Ripard" , "Simona Vetter" , "Thomas Zimmermann" Content-Transfer-Encoding: 7bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Fri, 25 Apr 2025 13:26:59 +0300, Cristian Ciocaltea wrote: > Factor out the HDMI connector initialization from > drm_kunit_helper_connector_hdmi_init_funcs() into a common > __connector_hdmi_init() function, while extending its functionality to > allow setting custom (i.e. non-default) EDID data. > > > [ ... ] Reviewed-by: Maxime Ripard Thanks! Maxime