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 406F4C48BC3 for ; Wed, 21 Feb 2024 13:16:27 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5CBF510E495; Wed, 21 Feb 2024 13:16:26 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="NHH1lJU9"; dkim-atps=neutral Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by gabe.freedesktop.org (Postfix) with ESMTPS id 144FE10E495 for ; Wed, 21 Feb 2024 13:16:25 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id 5DD2BCE1D85; Wed, 21 Feb 2024 13:16:22 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id EC9D4C433C7; Wed, 21 Feb 2024 13:16:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1708521381; bh=CzNNwBJXqJo8+OeoGkqFUliEc/7tS1hf8ZqDIk6i4dc=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=NHH1lJU9bkBJUiUtuhcFE+K0A2Bahbpo8q/yd3K+pm4+qd6baPUdX506iiSi9LqsK XO8+DpTgBXcnBuSwJE5JqJIbJy8R+LGDOrLVOjbRU/1B92mcQmSPTssS6Y1ijka2XR g8JW2GqTjezqkzF+7zOUqAbD+H8DygS3bOQzp0BtYbcLrYLzFvOTSJprODReef42Wp xPNgOv5bfRAhhEtrkR5jfC5PaQxAs8IBRBhl5qOirhytkTyVy68Fo0itNv+rjQRPFf 8UjdTQseGSyWOR/qHhdEWdtc6DQFUcY1O52px197vlc6l/VinIEVuw1DeARD1vPV7A a7moLGEUOq7/w== Message-ID: Date: Wed, 21 Feb 2024 13:16:18 +0000 From: "Maxime Ripard" To: =?utf-8?b?T25kxZllaiBKaXJtYW4=?= Subject: Re: [PATCH 1/3] drm/sun4i: Unify sun8i_*_layer structs In-Reply-To: <20240216190430.1374132-2-megi@xff.cz> References: <20240216190430.1374132-2-megi@xff.cz> Cc: dri-devel@lists.freedesktop.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-sunxi@lists.linux.dev, "Chen-Yu Tsai" , "Daniel Vetter" , "David Airlie" , "Jernej Skrabec" , "Maarten Lankhorst" , "Maxime Ripard" , "Ondrej Jirman" , "Samuel Holland" , "Thomas Zimmermann" Content-Transfer-Encoding: quoted-printable 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, 16 Feb 2024 20:04:24 +0100, Ond=C5=99ej Jirman wrote: > From: Ondrej Jirman >=20 > These structs are identical, use a single struct to represent private > data for the DRM plane. This is a preparation for configuring layer > routing from the CRTC (mixer) instead of current approach of setting >=20 > [ ... ] Reviewed-by: Maxime Ripard Thanks! Maxime