[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH v3 2/5] xen/arm: use {DT,ACPI}_DEV_INFO for device info sections
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@xxxxxxxxx> --- Changes in V2: - use refactored ADEV_INFO and DT_DEV_INFO macros. --- xen/arch/arm/xen.lds.S | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/xen/arch/arm/xen.lds.S b/xen/arch/arm/xen.lds.S index bd884664ad..7317851871 100644 --- a/xen/arch/arm/xen.lds.S +++ b/xen/arch/arm/xen.lds.S @@ -126,19 +126,13 @@ SECTIONS . = ALIGN(8); .dev.info : { - _sdevice = .; - *(.dev.info) - _edevice = .; + DT_DEV_INFO } :text -#ifdef CONFIG_ACPI . = ALIGN(8); .adev.info : { - _asdevice = .; - *(.adev.info) - _aedevice = .; + ADEV_INFO } :text -#endif . = ALIGN(8); .teemediator.info : { -- 2.46.1
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |