Refactor arm/xen.lds.S by replacing the inline definitions for
device info sections with the newly introduced {DT,ACPI}_DEV_INFO
macros from xen/xen.lds.h.
Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com>
---
Changes in V2:
- New patch.
---
xen/arch/arm/xen.lds.S | 14 ++------------
1 file changed, 2 insertions(+), 12 deletions(-)
diff --git a/xen/arch/arm/xen.lds.S b/xen/arch/arm/xen.lds.S
index bd884664ad..940ff7819a 100644
--- a/xen/arch/arm/xen.lds.S
+++ b/xen/arch/arm/xen.lds.S
@@ -125,20 +125,10 @@ SECTIONS
} :text
. = ALIGN(8);
- .dev.info : {
- _sdevice = .;
- *(.dev.info)
- _edevice = .;
- } :text
+ DT_DEV_INFO_SEC(.dev.info, NOUSE_DECL_SECTION)
-#ifdef CONFIG_ACPI
. = ALIGN(8);
- .adev.info : {
- _asdevice = .;
- *(.adev.info)
- _aedevice = .;
- } :text
-#endif
+ ACPI_DEV_INFO_SEC(.adev.info, NOUSE_DECL_SECTION)
. = ALIGN(8);
.teemediator.info : {
--
2.46.0