From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gofer.mess.org (gofer.mess.org [88.97.38.141]) (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 9971318AE5 for ; Sat, 22 Jul 2023 10:06:26 +0000 (UTC) Received: by gofer.mess.org (Postfix, from userid 1000) id 1365910006C; Sat, 22 Jul 2023 11:00:08 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mess.org; s=2020; t=1690020008; bh=YcBVF9OByPJWzCU45MSsTPERsEXi6qu8BVTu0NkN++c=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=RwUTEpJM3LXz5vvd/Y0UX8jlKMMGY5MBgH5ORtxvVA9epRgGRHV+EJ5bxsx5U1fQ6 be1F7Q3RwRnOO5wlKAT0dYHSsoH4oFxvkbJDIwD8j47iVVLvWgdnaMVaH+O93y4uzm j3qDxiYJK6H8/rdrOpRd03QDT0xv1AjEWYkR9+0NsPhEsbWdUX1bQSfAM/Gx+soJCw ruhU+je4WXNX+nPIr793k7oHAUiPHpLY2zVhHHyJqGcJAQpdoBqqBU/02KtJcabL8p iq/Ie/NdHUd1BPLYxd1Z7aDweYfgxI67HdC317LlyUi4QUHxgrFjo0fCSxudDhfrPM X4oARS48J/LLA== Date: Sat, 22 Jul 2023 11:00:08 +0100 From: Sean Young To: Rob Herring Cc: Hans Verkuil , Mauro Carvalho Chehab , Maxime Coquelin , Alexandre Torgue , Manivannan Sadhasivam , Laurent Pinchart , Michael Riesch , Rui Miguel Silva , Steve Longerbeam , Matt Ranostay , Michael Tretter , Pengutronix Kernel Team , Ming Qian , Shijie Qin , Zhou Peng , Eddie James , Joel Stanley , Andrew Jeffery , Philipp Zabel , Bin Liu , Matthias Brugger , AngeloGioacchino Del Regno , Minghsiu Tsai , Houlong Wei , Andrew-CT Chen , Tiffany Lin , Yunfei Dong , Dmitry Osipenko , Thierry Reding , Jonathan Hunter , Shawn Guo , Sascha Hauer , Fabio Estevam , NXP Linux Team , Stanimir Varbanov , Vikash Garodia , Bryan O'Donoghue , Andy Gross , Bjorn Andersson , Konrad Dybcio , Niklas =?iso-8859-1?Q?S=F6derlund?= , Fabrizio Castro , Kieran Bingham , Mikhail Ulyanov , Jacopo Mondi , Dafna Hirschfeld , Heiko Stuebner , Krz ysztof Kozlowski , Alim Akhtar , Sylwester Nawrocki , Maxime Ripard , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Yong Deng , Paul Kocialkowski , Benoit Parrot , Neil Armstrong , Kevin Hilman , Jerome Brunet , Martin Blumenstingl , Sean Wang , devicetree@vger.kernel.org, linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, openbmc@lists.ozlabs.org, linux-aspeed@lists.ozlabs.org, linux-mediatek@lists.infradead.org, linux-tegra@vger.kernel.org, linux-arm-msm@vger.kernel.org, linux-renesas-soc@vger.kernel.org, linux-rockchip@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-sunxi@lists.linux.dev, linux-amlogic@lists.infradead.org Subject: Re: [PATCH v2] media: Explicitly include correct DT includes Message-ID: References: <20230718143118.1065743-1-robh@kernel.org> Precedence: bulk X-Mailing-List: linux-sunxi@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230718143118.1065743-1-robh@kernel.org> Hi, On Tue, Jul 18, 2023 at 08:31:14AM -0600, Rob Herring wrote: > The DT of_device.h and of_platform.h date back to the separate > of_platform_bus_type before it as merged into the regular platform bus. > As part of that merge prepping Arm DT support 13 years ago, they > "temporarily" include each other. They also include platform_device.h > and of.h. As a result, there's a pretty much random mix of those include > files used throughout the tree. In order to detangle these headers and > replace the implicit includes with struct declarations, users need to > explicitly include the correct includes. > > Signed-off-by: Rob Herring For: > drivers/media/rc/meson-ir.c | 2 +- > drivers/media/rc/mtk-cir.c | 3 ++- > drivers/media/rc/sunxi-cir.c | 3 ++- Reviewed-by: Sean Young Thanks, Sean