Re: [PATCH v2] xen/efi: Remove PrintMessage function

2025-07-21 Thread Orzel, Michal
On 18/07/2025 14:11, Frediano Ziglio wrote: > The function is similar to PrintStr with an implicit newline > added to the string. > In Xen this is not a common pattern and this is used in EFI > ARM code only making it not much coherent with X86 code > so use PrintStr directly to make the code mo

Re: [PATCH v2] xen/efi: Remove PrintMessage function

2025-07-18 Thread Andrew Cooper
On 18/07/2025 1:11 pm, Frediano Ziglio wrote: > The function is similar to PrintStr with an implicit newline > added to the string. > In Xen this is not a common pattern and this is used in EFI > ARM code only making it not much coherent with X86 code > so use PrintStr directly to make the code mor

[PATCH v2] xen/efi: Remove PrintMessage function

2025-07-18 Thread Frediano Ziglio
The function is similar to PrintStr with an implicit newline added to the string. In Xen this is not a common pattern and this is used in EFI ARM code only making it not much coherent with X86 code so use PrintStr directly to make the code more coherent. Signed-off-by: Frediano Ziglio --- Changes