From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1F1B835F163 for ; Thu, 11 Jun 2026 07:35:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781163307; cv=none; b=cbCjgctHXrSfJYC7qr6dI9Wm9DdUgy0Pz88LfsQEA7qfdK92+gnZOgI7glRkj4oNblWltPmQBi3fEaj9vfHzM17LJNqjc4sYp8+hMQt+Dn7n2bc573jPmQclJmttqfJ8Vag3sMQY8jWxyLdgnere6qjgnCQ/VKEodpX1lQ9vVks= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781163307; c=relaxed/simple; bh=nUYLeMa3t1iNTvyPBQjwoySMzRug9OaFCyaOBcIN60U=; h=Message-ID:Date:From:To:Subject:In-Reply-To:References:Cc; b=uKAcOhii/WX6E69ne5QCa1NUAHfADrHON/gYEbmipKRu/4NiqA4p3ihGuRfjsGAT7yaHFvBeUb8AoxzUJibcP2OtsDYxa9bFSu8RAP9B/5SRHq2eaLPT4t9+zSrIt666GHdSzV8LoZCcVqPI8pXIVQnVdzcF1vhX8bTgKRb8W+c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=MWHABnq1; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="MWHABnq1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3E8B31F00893; Thu, 11 Jun 2026 07:35:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1781163305; bh=NedeNJ8O8q2mH1LBp+XUUGW47B46q0klZNROJC8QyLE=; h=Date:From:To:Subject:In-Reply-To:References:Cc; b=MWHABnq1Z81Doo8SXmG+JKZ2J7sT8/AQa5MAtGCxGl/2WyqIiQHX76QEySG7bYqIv Ugh1TwXou1Y6G9FW5TwZBVPkhVHefRlIs0ydizpw6h0vIejyw2xtrfmXLRvn4+knsc 6c4ofiZGtlTI7+XH7YOonTIYrMaMPSSHPrPHbvCv+f3p5P79OqhW+6+JxOttd3BEW9 zyJCIrQAxSOZr20KlqKeLnpCPCXFi4vMoKh8Ded28wpXt9xIYEF4z/c6WeZCVpuOxp 8j36hwO/EhLpmM3mUxNc7lv2T8xd5NQYVYJCw4EKhnEE3ltz/XJgmJy1w788dbSTxQ KsLVwcisfrx+A== Message-ID: Date: Thu, 11 Jun 2026 07:35:02 +0000 From: "Maxime Ripard" To: "Nicolas Frattaroli" Subject: Re: [PATCH v2] drm/tests: Move test EDID data to separate .c file In-Reply-To: <20260610-test-edid-array-definition-fix-v2-1-9de4605c4869@collabora.com> References: <20260610-test-edid-array-definition-fix-v2-1-9de4605c4869@collabora.com> Cc: dri-devel@lists.freedesktop.org, kernel@collabora.com, linux-kernel@vger.kernel.org, "Daniel Stone" , "David Airlie" , "Jani Nikula" , "Maarten Lankhorst" , "Maxime Ripard" , "Simona Vetter" , "Thomas Zimmermann" Content-Transfer-Encoding: 7bit Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: On Wed, 10 Jun 2026 16:31:08 +0200, Nicolas Frattaroli wrote: > Having the test EDID arrays defined in the .h directly will duplicate > them across every user of the EDID arrays. This works fine as long as > there's only one user, but may produce build warnings/errors when there > are multiple users and not all of them use all definitions. > > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime