This file 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 <agarc...@amd.com> --- xen/common/device-tree/Makefile | 2 +- xen/common/device-tree/{bootfdt.c => bootinfo-fdt.c} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename xen/common/device-tree/{bootfdt.c => bootinfo-fdt.c} (99%) diff --git a/xen/common/device-tree/Makefile b/xen/common/device-tree/Makefile index 57b9e6ca00..bb6d5ddec5 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 99% rename from xen/common/device-tree/bootfdt.c rename to xen/common/device-tree/bootinfo-fdt.c index fb4ac06390..bb5f45771e 100644 --- a/xen/common/device-tree/bootfdt.c +++ b/xen/common/device-tree/bootinfo-fdt.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ /* - * Early Device Tree + * Early Device Tree with bootinfo hooks * * Copyright (C) 2012-2014 Citrix Systems, Inc. */ -- 2.43.0