[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v8 06/11] xen/dt: Rename bootfdt.c -> bootinfo-fdt.c
- To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx>
- Date: Tue, 22 Jul 2025 02:05:18 +0200
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none (0)
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=rcJUu8FbvsQyOG8SGblhyV+uh/13+P9WHXWz0ZjRk3Q=; b=bkWXFA7tem72UK3hwQhCiVYnN1pLmvDjvP2jdtypX4W7wlmk8+vqbrI8LkczEKOcFD56v2kok3tMe1LA/6kjeArrn3AEENy9YGiT9CsivMCB9fcEACbRB7rN4441TiOXD2rPSQsy4p8WfPEBNG/948GntJJ5KUFUkFth6+C3mIzlNwX8zN4KaK2Kn6a4KhQpLqocvUIkD5LgBkznT9L4LxWSKcg42z+OIzGrm4NFLORrb/NwdVWJhbZW7LkTIx8kxeFLLmA9Phb7xQ6xcOQIsfmIy4E/Z/xtdXFoy3bwXTWyMnwJFDzN4jRR1hmvm7MrqPBEpSBSEJ1/xeH86iumwA==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=gXcaiFAy58m13WYydu5X5TWFEd6nWJI2oPKFH0DKxt4GC04HLM58DSBr07+gKveiXvqndHCyAQkRo48vSISkqt1nUBH/2+epZRXj9XZwU9zVsHRGIr11T0qbU6p1Wux8beC909mNjw/1uagHNaVzA9/APnLilKMQvv3LrWwfCnSE2MsEMoLUMY77DIiNHWTQk4zdH2kwZjtlvjDaVlOGw6NWa80wXmp+B3tJrs9Nuw+C9+4LL6uXh9jNYZdfBRTDoFucALX/n+ARZq6PD1VeZQoF3FRwlkC6qnDQEySIivD3190JWkH37XGGoVjG8cTDtb1apzKSpDk7TBqfrnbPng==
- Cc: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx>, "Daniel P. Smith" <dpsmith@xxxxxxxxxxxxxxxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Bertrand Marquis <bertrand.marquis@xxxxxxx>, Michal Orzel <michal.orzel@xxxxxxx>
- Delivery-date: Tue, 22 Jul 2025 00:06:05 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
bootinfo-fdt.c will eventually contain bootfdt helpers that make heavy
use of bootinfo. To simplify git history do the rename here explicitly.
A later patch extracts bootinfo-independent helpers into bootfdt.c.
Doing so here would needlessly pollute the diffs.
Not a functional change.
Signed-off-by: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx>
Reviewed-by: Michal Orzel <michal.orzel@xxxxxxx>
---
xen/common/device-tree/Makefile | 2 +-
xen/common/device-tree/{bootfdt.c => bootinfo-fdt.c} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename xen/common/device-tree/{bootfdt.c => bootinfo-fdt.c} (100%)
diff --git a/xen/common/device-tree/Makefile b/xen/common/device-tree/Makefile
index 13127296cb..8a3f2be89e 100644
--- a/xen/common/device-tree/Makefile
+++ b/xen/common/device-tree/Makefile
@@ -1,4 +1,4 @@
-obj-y += bootfdt.init.o
+obj-y += bootinfo-fdt.init.o
obj-y += bootinfo.init.o
obj-y += device-tree.o
obj-$(CONFIG_DOMAIN_BUILD_HELPERS) += domain-build.init.o
diff --git a/xen/common/device-tree/bootfdt.c
b/xen/common/device-tree/bootinfo-fdt.c
similarity index 100%
rename from xen/common/device-tree/bootfdt.c
rename to xen/common/device-tree/bootinfo-fdt.c
--
2.43.0
|