Re: [edk2-devel] Moving edk2-platforms reviews to GitHub Pull Requests

2024-07-01 Thread Paul via groups.io
[AMD Official Use Only - AMD Internal Distribution Only] I support this. Thanks, Paul -Original Message- From: Rebecca Cran Sent: Monday, July 1, 2024 12:17 PM To: devel@edk2.groups.io Cc: Leif Lindholm ; Michael D Kinney ; Ard Biesheuvel ; Chang, Abner ; Attar, AbdulLateef (Abdul Lat

Re: [edk2-devel] [edk2-platforms][PATCH 3/3] edk2-platform/Maintainer: Add entries for AMD packages

2024-05-23 Thread Paul via groups.io
[AMD Official Use Only - AMD Internal Distribution Only] Reviewed-by: Paul Grimes mailto:paul.gri...@amd.com>> From: devel@edk2.groups.io on behalf of Abdul Lateef Attar via groups.io Sent: Thursday, May 23, 2024 7:00:03 PM To: devel@edk2.groups.io ; michael.d.

Re: [edk2-devel] [edk2-platforms][PATCH 2/3] Platform/AMD: Update Readme.md

2024-05-23 Thread Paul via groups.io
[AMD Official Use Only - AMD Internal Distribution Only] Thanks for the up-stream, Abner. Looks good to me. Reviewed-by: Paul Grimes From: Yao, Ken Sent: Thursday, May 23, 2024 1:30:48 AM To: Zhai, MingXin (Duke) ; Chang, Abner ; devel@edk2.groups.io Cc: Grim

[edk2-devel] [PATCH v1 1/2] MdeModulePkg: BdsDxe: Uninitialized local variable.

2022-10-22 Thread Paul via groups.io
From: Paul Grimes In function BdsFormalizeConsoleVariable(), VariableSize is used prior to being initialized. This change initializes the variable. Cc: Zhiguang Liu Cc: Ray Ni Cc: Gua Guo Signed-off-by: Paul Grimes --- MdeModulePkg/Universal/BdsDxe/BdsEntry.c | 2 ++ 1 file changed, 2 inse

[edk2-devel] [PATCH v1 0/2] Uninitialized local variable.

2022-10-22 Thread Paul via groups.io
From: Paul Grimes The variable 'VariableSize' is used prior to being initialized. This patch initializes the variable. https://github.com/pbgrimes/edk2/tree/fix_uninitialized_local_variable Cc: Zhiguang Liu Cc: Ray Ni Cc: Gua Guo Cc: Qi Zhang Cc: Rahul Kumar Paul Grimes (2): MdeModule

[edk2-devel] [PATCH v1 2/2] SecurityPkg: OpalPasswordDxe: uninitialized local variable.

2022-10-22 Thread Paul via groups.io
From: Paul Grimes In ProcessOpalRequest(), VariableSize is used prior to being initialized. This change initializes the variable. Cc: Qi Zhang Cc: Rahul Kumar Signed-off-by: Paul Grimes --- SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Se