[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 06/11] xen/dt: Rename bootfdt.c -> bootinfo-fdt.c
- To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx>
- Date: Tue, 15 Jul 2025 18:11:01 +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=tpq1itb7C1yqjdxsKRw25pFQUaO19wAGvasS2MZJbQo=; b=pjHufkZUgo9KI5eKUkPwZLwDpWt7KlsyY/qw2D9UGjNi6N1fypa/SuiNML+XEBTP8922ifDbX+LZ7H3VqV2xe4RsqrcJgSYS6sCQpmo5LYwcrIInukfOz+RWtWpjDLz5dkqymxtCDbkXLFq0gSJ44Trxfay+Bhti+hKJaBrQ3QTIJZvvbVvYYopQETeEyLSJz6NW0l/CPaJN6bkcMmLGjMekaO5FYyVrlVgBR3UuDGxW/YfSjKlSrOdrR/GMdzQHfzLAsKyfRV4YzJEDj8odlXfMR3d/yWPbaMl/bgv3Iu9ZPN/GZGR6KKWpfvrPCRNvk2GtiU0FUVhEmsLjDnfKfw==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=fh78ROGblvtyZZQmpWO3+SANezQEy7tMP+mj3xMPyssu3WEpplzBDlyyC121xXdWg1W+yycbjSV9ddDwaZB+VrfhCbyoBVwNxIVN8K/Q3B7Qx9Fa6Yv8IHwS/k0B/HyvgQkp4OAhYNEAaf/WkBuECDX9mDq2DM0Dcrx+Wq9Kv7agkrj2REYfusCtlkiW3pQ5BdUQltcWx8Day22ekZkoAAtymt0RCC/DiHfaH017Veqm6bKuTNqupuYlW4nnECKhhuEtIbhLXn34qlqKur8VXFpMSi/mxIo9S13IBgbYo0Je6OzapjuX5LJ/DcFd6jgH+YKZbDQ1F5g2D90B0NbNkQ==
- Cc: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Bertrand Marquis <bertrand.marquis@xxxxxxx>, Michal Orzel <michal.orzel@xxxxxxx>, "Daniel P. Smith" <dpsmith@xxxxxxxxxxxxxxxxxxxx>
- Delivery-date: Tue, 15 Jul 2025 16:11:51 +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>
---
Dropped R-by because since v2, this patch and the one following it were
squashed unintionally. v7 brings things back to a cleaner history.
---
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
|