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 A81F8C433F5 for ; Wed, 30 Mar 2022 09:30:12 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 3C573840A4; Wed, 30 Mar 2022 11:30:10 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=linux.intel.com 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=intel.com header.i=@intel.com header.b="asrNKeb9"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 1A231840AD; Wed, 30 Mar 2022 11:30:08 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 63F4683894 for ; Wed, 30 Mar 2022 11:30:03 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=linux.intel.com Authentication-Results: phobos.denx.de; spf=none smtp.mailfrom=andriy.shevchenko@linux.intel.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1648632603; x=1680168603; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=DobGtYWNZka0j3JDzc9vmL1xpQUKsO7VaKdAlRmccbc=; b=asrNKeb9PKjjrsGNWXzKjxy2KSOmLV7c46FSfr5ZLg29U0e/sNPTj4Pm azeVq0R3lTH6dwFdsyi1iTMxBCHR+oQZcs8vNNxWOAztKQdSzm4WkmSjQ dsuVimSb3QSyWUrGyIifdjZBcAEdV885ZBxceUQjRoePMgxatuWuYkoHr /iIh71/RMwpQ7qV2+OdLHk0lN0GWpWFgM+lsJR4xAC7QjFa4/8V0Jcyo9 m4XWzDTWtYRLZj4lbqaV3lDgdTMKpiraapOjSKHe5czt3fsh8k2hRNpVQ dOXOEBSazkD4GU7AajNMeDObAA64QDqOmpV5IC3vB5o054zJPy/RslH5N A==; X-IronPort-AV: E=McAfee;i="6200,9189,10301"; a="322678569" X-IronPort-AV: E=Sophos;i="5.90,222,1643702400"; d="scan'208";a="322678569" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2022 02:29:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,222,1643702400"; d="scan'208";a="503249957" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga003.jf.intel.com with ESMTP; 30 Mar 2022 02:29:56 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 1A80711F; Wed, 30 Mar 2022 12:30:17 +0300 (EEST) From: Andy Shevchenko To: Andy Shevchenko , u-boot@lists.denx.de Cc: Bin Meng , Simon Glass , Tom Rini Subject: [PATCH v1 1/1] Makefile.lib: Re-use $(UBOOTINCLUDE) in dtc_cpp_flags Date: Wed, 30 Mar 2022 12:30:04 +0300 Message-Id: <20220330093004.34422-1-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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.5 at phobos.denx.de X-Virus-Status: Clean As in ASL case use same basic set of the inclusions. Signed-off-by: Andy Shevchenko --- scripts/Makefile.lib | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index c14da10de780..2ff39d39dc8a 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -185,12 +185,10 @@ u_boot_dtsi = $(strip $(u_boot_dtsi_options_debug) \ # Modified for U-Boot dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \ + $(UBOOTINCLUDE) \ -I$(srctree)/arch/$(ARCH)/dts \ -I$(srctree)/arch/$(ARCH)/dts/include \ - -Iinclude \ -I$(srctree)/include \ - -I$(srctree)/arch/$(ARCH)/include \ - -include $(srctree)/include/linux/kconfig.h \ -D__ASSEMBLY__ \ -undef -D__DTS__ -- 2.35.1