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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A0733EB64DC for ; Mon, 17 Jul 2023 07:50:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230405AbjGQHuY (ORCPT ); Mon, 17 Jul 2023 03:50:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52068 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230525AbjGQHuV (ORCPT ); Mon, 17 Jul 2023 03:50:21 -0400 Received: from madras.collabora.co.uk (madras.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e5ab]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2A9BBC7; Mon, 17 Jul 2023 00:50:18 -0700 (PDT) Received: from [192.168.1.100] (2-237-20-237.ip236.fastwebnet.it [2.237.20.237]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: kholk11) by madras.collabora.co.uk (Postfix) with ESMTPSA id 962586603203; Mon, 17 Jul 2023 08:50:16 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1689580217; bh=0YNi/N9joc9dy/ImQjHQQ6avz1iVC6jHegx/zkubv0Q=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=Cyf+LcE6c2dEJceUa0ySl9PdhqtfoVygeYrD0zAjeNwPTnE+vHJ/fG/fV7Wmho0UU WnCNWApVhovuQ4aSoew4LtRWJtO3h/FK09+7fCPJITxetNVqyd45wtlJenlDOM0mPW eFM5j00M/0lGZA7r14J1xsKuaFoR6iknDrKgNJOPrv9qIlBSk1/dHwPpILJ66id+5m /fkJEQ6xNL5gJlcRgyoSoRX9ANwi3hpLVstQ5x1eQvISSV2lR/iZBMT33sSkAPJcrE j6Qz3QzQ3hpEdPB7DAe+kvrObR6IT+ZZIC8iCUpybYodgibHUJcNwBDCvJrPeCt6FS awkMxR/nPdY6A== Message-ID: Date: Mon, 17 Jul 2023 09:50:13 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.12.0 Subject: Re: [PATCH] soc: mediatek: Explicitly include correct DT includes Content-Language: en-US To: Rob Herring , Matthias Brugger Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org References: <20230714175136.4067557-1-robh@kernel.org> From: AngeloGioacchino Del Regno In-Reply-To: <20230714175136.4067557-1-robh@kernel.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Il 14/07/23 19:51, Rob Herring ha scritto: > 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 Reviewed-by: AngeloGioacchino Del Regno