* [PATCH 0/4] trivial: Fix typos in "processing/processed"
@ 2019-09-26 12:04 Philippe Mathieu-Daudé
2019-09-26 12:04 ` [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name Philippe Mathieu-Daudé
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-09-26 12:04 UTC (permalink / raw)
To: devel
Cc: Philippe Mathieu-Daude, Achin Gupta, Jiaxin Wu, Eric Dong,
Dandan Bi, Siyuan Fu, Ray Ni, Jian J Wang, Jiewen Yao,
Supreeth Venkatesh, Hao A Wu, Liming Gao
Some "processing/processed" words are written with an extra 's'.
Properly write them.
Unrelated note, I'm sending this series using git-publish with
a 'cc.cmd' script which build the Cc list of each patch calling
BaseTools/Scripts/GetMaintainer.py, appologies if it fails :)
Philippe Mathieu-Daudé (4):
MdeModulePkg DxeCore: Fix typo in function name
MdeModulePkg/PiSmmCore: Fix typo in function name
StandaloneMmPkg/Core: Fix typo in function name
NetworkPkg/Ip6Dxe: Fix typo in comment
MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c | 4 ++--
MdeModulePkg/Core/PiSmmCore/Dispatcher.c | 4 ++--
NetworkPkg/Ip6Dxe/Ip6Option.c | 2 +-
StandaloneMmPkg/Core/Dispatcher.c | 4 ++--
StandaloneMmPkg/Core/FwVol.c | 4 ++--
5 files changed, 9 insertions(+), 9 deletions(-)
--
2.20.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name
2019-09-26 12:04 [PATCH 0/4] trivial: Fix typos in "processing/processed" Philippe Mathieu-Daudé
@ 2019-09-26 12:04 ` Philippe Mathieu-Daudé
2019-09-27 0:11 ` Liming Gao
2019-09-26 12:04 ` [PATCH 2/4] MdeModulePkg/PiSmmCore: " Philippe Mathieu-Daudé
` (4 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-09-26 12:04 UTC (permalink / raw)
To: devel; +Cc: Philippe Mathieu-Daude, Jian J Wang, Hao A Wu, Dandan Bi,
Liming Gao
An extra 's' slipped into the FvIsBeingProcessed function
name. Drop it to fix the typo.
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
---
MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
index c310b40b5298..fed60c48825d 100644
--- a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
+++ b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
@@ -696,7 +696,7 @@ FvHasBeenProcessed (
**/
KNOWN_HANDLE *
-FvIsBeingProcesssed (
+FvIsBeingProcessed (
IN EFI_HANDLE FvHandle
)
{
@@ -1253,7 +1253,7 @@ CoreFwVolEventProtocolNotify (
//
// Since we are about to process this Fv mark it as processed.
//
- KnownHandle = FvIsBeingProcesssed (FvHandle);
+ KnownHandle = FvIsBeingProcessed (FvHandle);
if (KnownHandle == NULL) {
//
// The FV with the same FV name guid has already been processed.
--
2.20.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/4] MdeModulePkg/PiSmmCore: Fix typo in function name
2019-09-26 12:04 [PATCH 0/4] trivial: Fix typos in "processing/processed" Philippe Mathieu-Daudé
2019-09-26 12:04 ` [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name Philippe Mathieu-Daudé
@ 2019-09-26 12:04 ` Philippe Mathieu-Daudé
2019-09-27 0:11 ` [edk2-devel] " Liming Gao
2019-09-26 12:04 ` [PATCH 3/4] StandaloneMmPkg/Core: " Philippe Mathieu-Daudé
` (3 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-09-26 12:04 UTC (permalink / raw)
To: devel; +Cc: Philippe Mathieu-Daude, Jian J Wang, Hao A Wu, Eric Dong, Ray Ni
An extra 's' slipped into the FvIsBeingProcessed function
name. Drop it to fix the typo.
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
---
MdeModulePkg/Core/PiSmmCore/Dispatcher.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/MdeModulePkg/Core/PiSmmCore/Dispatcher.c b/MdeModulePkg/Core/PiSmmCore/Dispatcher.c
index 1c88c8fb17c5..e5a160ed0b92 100644
--- a/MdeModulePkg/Core/PiSmmCore/Dispatcher.c
+++ b/MdeModulePkg/Core/PiSmmCore/Dispatcher.c
@@ -1101,7 +1101,7 @@ FvHasBeenProcessed (
**/
VOID
-FvIsBeingProcesssed (
+FvIsBeingProcessed (
IN EFI_HANDLE FvHandle
)
{
@@ -1294,7 +1294,7 @@ SmmDriverDispatchHandler (
//
// Since we are about to process this Fv mark it as processed.
//
- FvIsBeingProcesssed (FvHandle);
+ FvIsBeingProcessed (FvHandle);
Status = gBS->HandleProtocol (FvHandle, &gEfiFirmwareVolume2ProtocolGuid, (VOID **)&Fv);
if (EFI_ERROR (Status)) {
--
2.20.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/4] StandaloneMmPkg/Core: Fix typo in function name
2019-09-26 12:04 [PATCH 0/4] trivial: Fix typos in "processing/processed" Philippe Mathieu-Daudé
2019-09-26 12:04 ` [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name Philippe Mathieu-Daudé
2019-09-26 12:04 ` [PATCH 2/4] MdeModulePkg/PiSmmCore: " Philippe Mathieu-Daudé
@ 2019-09-26 12:04 ` Philippe Mathieu-Daudé
2019-09-26 12:04 ` [PATCH 4/4] NetworkPkg/Ip6Dxe: Fix typo in comment Philippe Mathieu-Daudé
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-09-26 12:04 UTC (permalink / raw)
To: devel; +Cc: Philippe Mathieu-Daude, Achin Gupta, Jiewen Yao,
Supreeth Venkatesh
An extra 's' slipped into the FvIsBeingProcessed function
name. Drop it to fix the typo.
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
---
StandaloneMmPkg/Core/Dispatcher.c | 4 ++--
StandaloneMmPkg/Core/FwVol.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/StandaloneMmPkg/Core/Dispatcher.c b/StandaloneMmPkg/Core/Dispatcher.c
index 3788389f95ed..65996fba52e3 100644
--- a/StandaloneMmPkg/Core/Dispatcher.c
+++ b/StandaloneMmPkg/Core/Dispatcher.c
@@ -804,13 +804,13 @@ FvHasBeenProcessed (
**/
VOID
-FvIsBeingProcesssed (
+FvIsBeingProcessed (
IN EFI_HANDLE FvHandle
)
{
KNOWN_HANDLE *KnownHandle;
- DEBUG ((DEBUG_INFO, "FvIsBeingProcesssed - 0x%08x\n", FvHandle));
+ DEBUG ((DEBUG_INFO, "FvIsBeingProcessed - 0x%08x\n", FvHandle));
KnownHandle = AllocatePool (sizeof (KNOWN_HANDLE));
ASSERT (KnownHandle != NULL);
diff --git a/StandaloneMmPkg/Core/FwVol.c b/StandaloneMmPkg/Core/FwVol.c
index 9fe0c257a43a..9aee3dbfc754 100644
--- a/StandaloneMmPkg/Core/FwVol.c
+++ b/StandaloneMmPkg/Core/FwVol.c
@@ -38,7 +38,7 @@ FvHasBeenProcessed (
);
VOID
-FvIsBeingProcesssed (
+FvIsBeingProcessed (
IN EFI_HANDLE FvHandle
);
@@ -86,7 +86,7 @@ Returns:
return EFI_SUCCESS;
}
- FvIsBeingProcesssed (FwVolHeader);
+ FvIsBeingProcessed (FwVolHeader);
//
// First check for encapsulated compressed firmware volumes
--
2.20.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 4/4] NetworkPkg/Ip6Dxe: Fix typo in comment
2019-09-26 12:04 [PATCH 0/4] trivial: Fix typos in "processing/processed" Philippe Mathieu-Daudé
` (2 preceding siblings ...)
2019-09-26 12:04 ` [PATCH 3/4] StandaloneMmPkg/Core: " Philippe Mathieu-Daudé
@ 2019-09-26 12:04 ` Philippe Mathieu-Daudé
2019-09-26 23:59 ` [edk2-devel] " Siyuan, Fu
2019-09-26 18:42 ` [edk2-devel] [PATCH 0/4] trivial: Fix typos in "processing/processed" Laszlo Ersek
2019-09-27 0:39 ` Wu, Hao A
5 siblings, 1 reply; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-09-26 12:04 UTC (permalink / raw)
To: devel; +Cc: Philippe Mathieu-Daude, Siyuan Fu, Jiaxin Wu
An extra 's' slipped into the 'processing' word.
Drop it to fix the typo.
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
---
NetworkPkg/Ip6Dxe/Ip6Option.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/NetworkPkg/Ip6Dxe/Ip6Option.c b/NetworkPkg/Ip6Dxe/Ip6Option.c
index 88111e3c24f5..4d92a852dc86 100644
--- a/NetworkPkg/Ip6Dxe/Ip6Option.c
+++ b/NetworkPkg/Ip6Dxe/Ip6Option.c
@@ -158,7 +158,7 @@ Ip6IsNDOptionValid (
//
// Check the length of Ip6OptionEtherSource, Ip6OptionEtherTarget, and
// Ip6OptionRedirected here. For unrecognized options, silently ignore
- // and continue processsing the message.
+ // and continue processing the message.
//
if (Length == 0) {
return FALSE;
--
2.20.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [edk2-devel] [PATCH 0/4] trivial: Fix typos in "processing/processed"
2019-09-26 12:04 [PATCH 0/4] trivial: Fix typos in "processing/processed" Philippe Mathieu-Daudé
` (3 preceding siblings ...)
2019-09-26 12:04 ` [PATCH 4/4] NetworkPkg/Ip6Dxe: Fix typo in comment Philippe Mathieu-Daudé
@ 2019-09-26 18:42 ` Laszlo Ersek
2019-09-27 0:39 ` Wu, Hao A
5 siblings, 0 replies; 10+ messages in thread
From: Laszlo Ersek @ 2019-09-26 18:42 UTC (permalink / raw)
To: devel, philmd
Cc: Achin Gupta, Jiaxin Wu, Eric Dong, Dandan Bi, Siyuan Fu, Ray Ni,
Jian J Wang, Jiewen Yao, Supreeth Venkatesh, Hao A Wu, Liming Gao
On 09/26/19 14:04, Philippe Mathieu-Daudé wrote:
> Some "processing/processed" words are written with an extra 's'.
> Properly write them.
>
> Unrelated note, I'm sending this series using git-publish with
> a 'cc.cmd' script which build the Cc list of each patch calling
> BaseTools/Scripts/GetMaintainer.py, appologies if it fails :)
>
> Philippe Mathieu-Daudé (4):
> MdeModulePkg DxeCore: Fix typo in function name
> MdeModulePkg/PiSmmCore: Fix typo in function name
> StandaloneMmPkg/Core: Fix typo in function name
> NetworkPkg/Ip6Dxe: Fix typo in comment
>
> MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c | 4 ++--
> MdeModulePkg/Core/PiSmmCore/Dispatcher.c | 4 ++--
> NetworkPkg/Ip6Dxe/Ip6Option.c | 2 +-
> StandaloneMmPkg/Core/Dispatcher.c | 4 ++--
> StandaloneMmPkg/Core/FwVol.c | 4 ++--
> 5 files changed, 9 insertions(+), 9 deletions(-)
>
series
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [edk2-devel] [PATCH 4/4] NetworkPkg/Ip6Dxe: Fix typo in comment
2019-09-26 12:04 ` [PATCH 4/4] NetworkPkg/Ip6Dxe: Fix typo in comment Philippe Mathieu-Daudé
@ 2019-09-26 23:59 ` Siyuan, Fu
0 siblings, 0 replies; 10+ messages in thread
From: Siyuan, Fu @ 2019-09-26 23:59 UTC (permalink / raw)
To: devel@edk2.groups.io, philmd@redhat.com; +Cc: Wu, Jiaxin
Reviewed-by: Siyuan Fu <siyuan.fu@intel.com>
> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Philippe
> Mathieu-Daudé
> Sent: 2019年9月26日 20:05
> To: devel@edk2.groups.io
> Cc: Philippe Mathieu-Daude <philmd@redhat.com>; Fu, Siyuan
> <siyuan.fu@intel.com>; Wu, Jiaxin <jiaxin.wu@intel.com>
> Subject: [edk2-devel] [PATCH 4/4] NetworkPkg/Ip6Dxe: Fix typo in comment
>
> An extra 's' slipped into the 'processing' word.
> Drop it to fix the typo.
>
> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
> ---
> NetworkPkg/Ip6Dxe/Ip6Option.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/NetworkPkg/Ip6Dxe/Ip6Option.c
> b/NetworkPkg/Ip6Dxe/Ip6Option.c
> index 88111e3c24f5..4d92a852dc86 100644
> --- a/NetworkPkg/Ip6Dxe/Ip6Option.c
> +++ b/NetworkPkg/Ip6Dxe/Ip6Option.c
> @@ -158,7 +158,7 @@ Ip6IsNDOptionValid (
> //
> // Check the length of Ip6OptionEtherSource, Ip6OptionEtherTarget, and
> // Ip6OptionRedirected here. For unrecognized options, silently ignore
> - // and continue processsing the message.
> + // and continue processing the message.
> //
> if (Length == 0) {
> return FALSE;
> --
> 2.20.1
>
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name
2019-09-26 12:04 ` [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name Philippe Mathieu-Daudé
@ 2019-09-27 0:11 ` Liming Gao
0 siblings, 0 replies; 10+ messages in thread
From: Liming Gao @ 2019-09-27 0:11 UTC (permalink / raw)
To: Philippe Mathieu-Daude, devel@edk2.groups.io
Cc: Wang, Jian J, Wu, Hao A, Bi, Dandan
Reviewed-by: Liming Gao <liming.gao@intel.com>
>-----Original Message-----
>From: Philippe Mathieu-Daude [mailto:philmd@redhat.com]
>Sent: Thursday, September 26, 2019 8:05 PM
>To: devel@edk2.groups.io
>Cc: Philippe Mathieu-Daude <philmd@redhat.com>; Wang, Jian J
><jian.j.wang@intel.com>; Wu, Hao A <hao.a.wu@intel.com>; Bi, Dandan
><dandan.bi@intel.com>; Gao, Liming <liming.gao@intel.com>
>Subject: [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name
>
>An extra 's' slipped into the FvIsBeingProcessed function
>name. Drop it to fix the typo.
>
>Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
>---
> MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
>diff --git a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
>b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
>index c310b40b5298..fed60c48825d 100644
>--- a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
>+++ b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
>@@ -696,7 +696,7 @@ FvHasBeenProcessed (
>
> **/
> KNOWN_HANDLE *
>-FvIsBeingProcesssed (
>+FvIsBeingProcessed (
> IN EFI_HANDLE FvHandle
> )
> {
>@@ -1253,7 +1253,7 @@ CoreFwVolEventProtocolNotify (
> //
> // Since we are about to process this Fv mark it as processed.
> //
>- KnownHandle = FvIsBeingProcesssed (FvHandle);
>+ KnownHandle = FvIsBeingProcessed (FvHandle);
> if (KnownHandle == NULL) {
> //
> // The FV with the same FV name guid has already been processed.
>--
>2.20.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [edk2-devel] [PATCH 2/4] MdeModulePkg/PiSmmCore: Fix typo in function name
2019-09-26 12:04 ` [PATCH 2/4] MdeModulePkg/PiSmmCore: " Philippe Mathieu-Daudé
@ 2019-09-27 0:11 ` Liming Gao
0 siblings, 0 replies; 10+ messages in thread
From: Liming Gao @ 2019-09-27 0:11 UTC (permalink / raw)
To: devel@edk2.groups.io, philmd@redhat.com
Cc: Wang, Jian J, Wu, Hao A, Dong, Eric, Ni, Ray
Reviewed-by: Liming Gao <liming.gao@intel.com>
>-----Original Message-----
>From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
>Philippe Mathieu-Daudé
>Sent: Thursday, September 26, 2019 8:05 PM
>To: devel@edk2.groups.io
>Cc: Philippe Mathieu-Daude <philmd@redhat.com>; Wang, Jian J
><jian.j.wang@intel.com>; Wu, Hao A <hao.a.wu@intel.com>; Dong, Eric
><eric.dong@intel.com>; Ni, Ray <ray.ni@intel.com>
>Subject: [edk2-devel] [PATCH 2/4] MdeModulePkg/PiSmmCore: Fix typo in
>function name
>
>An extra 's' slipped into the FvIsBeingProcessed function
>name. Drop it to fix the typo.
>
>Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
>---
> MdeModulePkg/Core/PiSmmCore/Dispatcher.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
>diff --git a/MdeModulePkg/Core/PiSmmCore/Dispatcher.c
>b/MdeModulePkg/Core/PiSmmCore/Dispatcher.c
>index 1c88c8fb17c5..e5a160ed0b92 100644
>--- a/MdeModulePkg/Core/PiSmmCore/Dispatcher.c
>+++ b/MdeModulePkg/Core/PiSmmCore/Dispatcher.c
>@@ -1101,7 +1101,7 @@ FvHasBeenProcessed (
>
> **/
> VOID
>-FvIsBeingProcesssed (
>+FvIsBeingProcessed (
> IN EFI_HANDLE FvHandle
> )
> {
>@@ -1294,7 +1294,7 @@ SmmDriverDispatchHandler (
> //
> // Since we are about to process this Fv mark it as processed.
> //
>- FvIsBeingProcesssed (FvHandle);
>+ FvIsBeingProcessed (FvHandle);
>
> Status = gBS->HandleProtocol (FvHandle,
>&gEfiFirmwareVolume2ProtocolGuid, (VOID **)&Fv);
> if (EFI_ERROR (Status)) {
>--
>2.20.1
>
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4] trivial: Fix typos in "processing/processed"
2019-09-26 12:04 [PATCH 0/4] trivial: Fix typos in "processing/processed" Philippe Mathieu-Daudé
` (4 preceding siblings ...)
2019-09-26 18:42 ` [edk2-devel] [PATCH 0/4] trivial: Fix typos in "processing/processed" Laszlo Ersek
@ 2019-09-27 0:39 ` Wu, Hao A
5 siblings, 0 replies; 10+ messages in thread
From: Wu, Hao A @ 2019-09-27 0:39 UTC (permalink / raw)
To: Philippe Mathieu-Daude, devel@edk2.groups.io
Cc: Achin Gupta, Wu, Jiaxin, Dong, Eric, Bi, Dandan, Fu, Siyuan,
Ni, Ray, Wang, Jian J, Yao, Jiewen, Supreeth Venkatesh,
Gao, Liming
> -----Original Message-----
> From: Philippe Mathieu-Daude [mailto:philmd@redhat.com]
> Sent: Thursday, September 26, 2019 8:05 PM
> To: devel@edk2.groups.io
> Cc: Philippe Mathieu-Daude; Achin Gupta; Wu, Jiaxin; Dong, Eric; Bi, Dandan;
> Fu, Siyuan; Ni, Ray; Wang, Jian J; Yao, Jiewen; Supreeth Venkatesh; Wu, Hao
> A; Gao, Liming
> Subject: [PATCH 0/4] trivial: Fix typos in "processing/processed"
>
> Some "processing/processed" words are written with an extra 's'.
> Properly write them.
>
> Unrelated note, I'm sending this series using git-publish with
> a 'cc.cmd' script which build the Cc list of each patch calling
> BaseTools/Scripts/GetMaintainer.py, appologies if it fails :)
>
> Philippe Mathieu-Daudé (4):
> MdeModulePkg DxeCore: Fix typo in function name
> MdeModulePkg/PiSmmCore: Fix typo in function name
> StandaloneMmPkg/Core: Fix typo in function name
> NetworkPkg/Ip6Dxe: Fix typo in comment
>
> MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c | 4 ++--
> MdeModulePkg/Core/PiSmmCore/Dispatcher.c | 4 ++--
For the MdeModulePkg part,
Reviewed-by: Hao A Wu <hao.a.wu@intel.com>
Best Regards,
Hao Wu
> NetworkPkg/Ip6Dxe/Ip6Option.c | 2 +-
> StandaloneMmPkg/Core/Dispatcher.c | 4 ++--
> StandaloneMmPkg/Core/FwVol.c | 4 ++--
> 5 files changed, 9 insertions(+), 9 deletions(-)
>
> --
> 2.20.1
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2019-09-27 0:39 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-26 12:04 [PATCH 0/4] trivial: Fix typos in "processing/processed" Philippe Mathieu-Daudé
2019-09-26 12:04 ` [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name Philippe Mathieu-Daudé
2019-09-27 0:11 ` Liming Gao
2019-09-26 12:04 ` [PATCH 2/4] MdeModulePkg/PiSmmCore: " Philippe Mathieu-Daudé
2019-09-27 0:11 ` [edk2-devel] " Liming Gao
2019-09-26 12:04 ` [PATCH 3/4] StandaloneMmPkg/Core: " Philippe Mathieu-Daudé
2019-09-26 12:04 ` [PATCH 4/4] NetworkPkg/Ip6Dxe: Fix typo in comment Philippe Mathieu-Daudé
2019-09-26 23:59 ` [edk2-devel] " Siyuan, Fu
2019-09-26 18:42 ` [edk2-devel] [PATCH 0/4] trivial: Fix typos in "processing/processed" Laszlo Ersek
2019-09-27 0:39 ` Wu, Hao A
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox