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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 87F3AC3ABC9 for ; Thu, 15 May 2025 08:02:01 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id C12ED82AD2; Thu, 15 May 2025 10:01:59 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="bIcsZenB"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id E2CBA82B19; Thu, 15 May 2025 10:01:58 +0200 (CEST) Received: from nyc.source.kernel.org (nyc.source.kernel.org [IPv6:2604:1380:45d1:ec00::3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id D4C4F8288D for ; Thu, 15 May 2025 10:01:56 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=mkorpershoek@kernel.org Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by nyc.source.kernel.org (Postfix) with ESMTP id C6EFAA4D5EA; Thu, 15 May 2025 08:01:55 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4111EC4CEE7; Thu, 15 May 2025 08:01:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1747296115; bh=u1d4EMzUR9sGwYYCqEt0JDT8mOoyJCQyEGC/vFEwWDU=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=bIcsZenBSRSTqz6hoNBMQzotvt3HtWrjUwfUfAJ62w84DPL/ByLo5xTErCz0rSSm2 NMurDNN8Q/9Ob1EJ32+Sa3yelvahjvjrP9Muz7EqL2/qZsGqZaDz8tVEO3sydJ40m/ CCM11k5SY7NK5F/oZNgfQ+AKWcoAxUX1wJa4OhunlUwPsYPql5V2fTVvn39/P9AS0S HPbL/n2rMi0DWMMV5oSdLrD/rKDghvIGkMa26kKrSZ1RsefwAgCD8g4QftAV4nl/R2 f6crdWMBmxa4xFG2tP/50C7fcmWNNImiJ4i5mwvn98U5nEiseBt656/sNrtYn/2GDf bglBJuYUV9EvA== From: Mattijs Korpershoek To: Tom Rini , u-boot@lists.denx.de Cc: Anatolij Gustschin , Bin Meng , Heinrich Schuchardt , Ilias Apalodimas , Jaehoon Chung , Jerome Forissier , Linus Walleij , Lukasz Majewski , Marek Vasut , Mark Kettenis , Masahisa Kojima , Mattijs Korpershoek , Patrice Chotard , Patrick Delaunay , Rayagonda Kokatanur , Simon Glass , Simon Goldschmidt , Stefan Bosch , Tien Fong Chee , Tingting Meng , Tobias Waldekranz Subject: Re: [PATCH 4/5] global: Avoid indirect inclusion of from In-Reply-To: <20250514225002.15361-5-trini@konsulko.com> References: <20250514225002.15361-1-trini@konsulko.com> <20250514225002.15361-5-trini@konsulko.com> Date: Thu, 15 May 2025 10:01:50 +0200 Message-ID: <87a57e5mkx.fsf@kernel.org> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean Hi Tom, Thank you for the patch. On Wed, May 14, 2025 at 16:46, Tom Rini wrote: > The include file does not need anything from . > Furthermore, include/env.h itself includes other headers which can lead > to longer indirect inclusion paths. To prepare to remove from > fix all of the places which had relied on this indirect > inclusion to instead include directly. > > Signed-off-by: Tom Rini Reviewed-by: Mattijs Korpershoek # android, bcb > ---