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 X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E2E6EC5321D for ; Sun, 19 Apr 2020 18:15:21 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id B835D21927 for ; Sun, 19 Apr 2020 18:15:20 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="RmRFpgh9" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B835D21927 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5CC8C6E0C5; Sun, 19 Apr 2020 18:15:20 +0000 (UTC) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by gabe.freedesktop.org (Postfix) with ESMTPS id 62E6C6E0C5; Sun, 19 Apr 2020 18:15:19 +0000 (UTC) Received: from kernel.org (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 1BC5D20771; Sun, 19 Apr 2020 18:15:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587320119; bh=p4n++5U0A4OCyfDu3fVqzBUhH4zBoXeoQg5Bhyjk5vs=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=RmRFpgh9qOnCZcBjur/bkO1wxz/Io0VUZRVX9CVb6z+EdzgjT/udTJBdTVjGD2kKt 5W/mfVhMfxRmQDNmeSobboeL1B0AOsKg6aKQG6X8KtW/eCqhdMm7SObo/IXpu5XC8a amuXOAvjV+246gBjLzZUgEN7lSf6GsXiOxk2wF2Q= MIME-Version: 1.0 In-Reply-To: <1587030553-5990-1-git-send-email-hadar.gat@arm.com> References: <1587030553-5990-1-git-send-email-hadar.gat@arm.com> Subject: Re: [PATCH v2] of_device: removed #include that caused a recursion in included headers From: Stephen Boyd To: Alexandre Belloni , Alexandre Torgue , Andy Gross , Bjorn Andersson , Chen-Yu Tsai , Daniel Vetter , David Airlie , David S. Miller , Dong Aisheng , Fabio Estevam , Frank Rowand , Giuseppe Cavallaro , Greg Kroah-Hartman , Hadar Gat , Heiko Stübner , JC Kuo , Joerg Roedel , Jonathan Cameron , Jonathan Hunter , Jose Abreu , Kishon Vijay Abraham I , Krzysztof Kozlowski , Kukjin Kim , Lee Jones , Linus Walleij , Liviu Dudau , Lorenzo Pieralisi , Ludovic Desroches , Matthias Brugger , Maxime Coquelin , Maxime Ripard , Michael Turquette , Miquel Raynal , Nicolas Ferre , Richard Weinberger , Rob Clark , Rob Herring , Sandy Huang , Sascha Hauer , Sean Paul , Shawn Guo , Stefan Agner , Sudeep Holla , Thierry Reding , Tony Lindgren , Vignesh Raghavendra , Vinod Koul Date: Sun, 19 Apr 2020 11:15:18 -0700 Message-ID: <158732011837.132238.3255039844840932086@swboyd.mtv.corp.google.com> User-Agent: alot/0.9 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: , Cc: linux-iio@vger.kernel.org, dri-devel@lists.freedesktop.org, linux-mtd@lists.infradead.org, sparclinux@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-samsung-soc@vger.kernel.org, linux-clk@vger.kernel.org, linux-rockchip@lists.infradead.org, Hadar Gat , devicetree@vger.kernel.org, linux-arm-msm@vger.kernel.org, linux-gpio@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-tegra@vger.kernel.org, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Ofir Drang , Gilad Ben-Yossef , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, iommu@lists.linux-foundation.org, dmaengine@vger.kernel.org, freedreno@lists.freedesktop.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Quoting Hadar Gat (2020-04-16 02:49:03) > Both of_platform.h and of_device.h were included each other. > In of_device.h, removed unneeded #include to of_platform.h > and added include to of_platform.h in the files that needs it. > > Signed-off-by: Hadar Gat > --- Acked-by: Stephen Boyd # clk _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel