[edk2-devel] [PATCH v2] DynamicTablesPkg: FdtHwInfoParserLib: Fix compatible string

2023-01-09 Thread Moritz Fischer via groups.io
Linux's cpu DT bindings call out arm,armv8 while the code previously used arm,arm-v8, add second entry to support the arm,arm-v8 case. Cc: Sami Mujawar Fixes: e366a41ef0 ("DynamicTablesPkg: FdtHwInfoParser: Add GICC parser") Signed-off-by: Moritz Fischer ---

Re: [edk2-devel] [PATCH] DynamicTablesPkg: FdtHwInfoParserLib: Fix compatible string

2023-01-07 Thread Moritz Fischer via groups.io
at 10:14, Ard Biesheuvel wrote: > >> On Fri, 6 Jan 2023 at 00:07, Moritz Fischer via groups.io > >> wrote: > >>> Linux' cpu DT bindings call out arm,armv8 while the code previously > >>> used arm,arm-v8. > >>> > >>

[edk2-devel] [PATCH] DynamicTablesPkg: FdtHwInfoParserLib: Fix compatible string

2023-01-05 Thread Moritz Fischer via groups.io
Linux' cpu DT bindings call out arm,armv8 while the code previously used arm,arm-v8. Fixes: e366a41ef0 ("DynamicTablesPkg: FdtHwInfoParser: Add GICC parser") Signed-off-by: Moritz Fischer --- DynamicTablesPkg/Library/FdtHwInfoParserLib/Gic/ArmGicCParser.c | 2 +- 1 file changed, 1 insertion(+),

Re: [edk2-devel] [PATCH] Updating brotli submodules to build with GCC 11.

2022-02-14 Thread Moritz Fischer via groups.io
On Mon, Feb 14, 2022 at 10:24 AM Leonardo Garcia wrote: > > From: Leonardo Garcia > > GCC 11.1.0 introduced a new warning for variable length arrays as > parameters (vla-parameter). Brotli compression library had issues with > this which were fixed upstream by commits >

Re: [edk2-devel] [PATCH v2 1/1] ArmPkg: Implement PlatformBootManagerLib for LinuxBoot

2021-10-22 Thread Moritz Fischer via groups.io
On Fri, Oct 22, 2021 at 11:08 AM Ard Biesheuvel wrote: > > This patch triggers CI failures > > https://github.com/tianocore/edk2/pull/2114 > > Please take a look and resubmit if there is anything to fix. Looks like a missing comment? > > On Wed, 13 Oct 2021 at 20:43, Samer El-Haj-Mahmoud >

[edk2-devel] [PATCH] DynamicTablesPkg: Fix unitialized variable use

2021-10-19 Thread Moritz Fischer via groups.io
In the success case we should return EFI_SUCCESS rather than returning a potentially unitialized value of Status. Cc: Sami Mujawar Cc: Alexei Fedorov Signed-off-by: Moritz Fischer --- .../Library/Common/AmlLib/CodeGen/AmlResourceDataCodeGen.c | 2 +- 1 file changed, 1 insertion(+), 1

Re: [edk2-devel] [PATCH] UefiPayloadPkg: Replace MEMROY_ENTRY by MEMORY_ENTRY

2021-10-18 Thread Moritz Fischer via groups.io
On Wed, May 5, 2021 at 8:55 PM Guo Dong wrote: > > > Reviewed-by: Guo Dong How does this get picked up? > > > -Original Message- > > From: Moritz Fischer > > Sent: Wednesday, May 5, 2021 8:44 PM > > To: devel@edk2.groups.io > > Cc: Moritz Fischer ; Ma, Maurice > > ; Dong, Guo ; You, >

[edk2-devel] [PATCH] UefiPayloadPkg: Replace MEMROY_ENTRY by MEMORY_ENTRY

2021-05-05 Thread Moritz Fischer via groups.io
Fixes simple typo, no behavioral change. Cc: Maurice Ma Cc: Guo Dong Cc: Benjamin You Signed-off-by: Moritz Fischer --- UefiPayloadPkg/Include/Guid/MemoryMapInfoGuid.h| 6 +++--- UefiPayloadPkg/Include/Library/BlParseLib.h| 2 +- UefiPayloadPkg/Library/CbParseLib/CbParseLib.c