Re: [PATCH v3 08/14] xen/dt: Move bootfdt functions to xen/bootfdt.h

2025-06-19 Thread Stefano Stabellini
On Thu, 19 Jun 2025, Alejandro Vallejo wrote: > Hi, > > On Sat Jun 14, 2025 at 3:16 AM CEST, Stefano Stabellini wrote: > > On Fri, 13 Jun 2025, Alejandro Vallejo wrote: > >> diff --git a/xen/include/xen/device_tree.h b/xen/include/xen/device_tree.h > >> index 75017e4266..0a22b1ba1d 100644 > >> ---

Re: [PATCH v3 08/14] xen/dt: Move bootfdt functions to xen/bootfdt.h

2025-06-19 Thread Alejandro Vallejo
Hi, On Sat Jun 14, 2025 at 3:16 AM CEST, Stefano Stabellini wrote: > On Fri, 13 Jun 2025, Alejandro Vallejo wrote: >> diff --git a/xen/include/xen/device_tree.h b/xen/include/xen/device_tree.h >> index 75017e4266..0a22b1ba1d 100644 >> --- a/xen/include/xen/device_tree.h >> +++ b/xen/include/xen/de

Re: [PATCH v3 08/14] xen/dt: Move bootfdt functions to xen/bootfdt.h

2025-06-16 Thread Alejandro Vallejo
On Sat Jun 14, 2025 at 3:16 AM CEST, Stefano Stabellini wrote: > On Fri, 13 Jun 2025, Alejandro Vallejo wrote: >> Part of an unpicking process to extract bootfdt contents independent of >> bootinfo >> to a separate file for x86 to take. >> >> Move functions required for early FDT parsing from dev

Re: [PATCH v3 08/14] xen/dt: Move bootfdt functions to xen/bootfdt.h

2025-06-13 Thread Stefano Stabellini
On Fri, 13 Jun 2025, Alejandro Vallejo wrote: > Part of an unpicking process to extract bootfdt contents independent of > bootinfo > to a separate file for x86 to take. > > Move functions required for early FDT parsing from device_tree.h and arm's > setup.h onto bootfdt.h > > Declaration motion

[PATCH v3 08/14] xen/dt: Move bootfdt functions to xen/bootfdt.h

2025-06-13 Thread Alejandro Vallejo
Part of an unpicking process to extract bootfdt contents independent of bootinfo to a separate file for x86 to take. Move functions required for early FDT parsing from device_tree.h and arm's setup.h onto bootfdt.h Declaration motion only. Not a functional change. Signed-off-by: Alejandro Vallej