[edk2-devel] [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name

Philippe Mathieu-Daudé posted 4 patches 6 years, 4 months ago
There is a newer version of this series
[edk2-devel] [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name
Posted by Philippe Mathieu-Daudé 6 years, 4 months ago
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


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#48088): https://edk2.groups.io/g/devel/message/48088
Mute This Topic: https://groups.io/mt/34297953/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-

Re: [edk2-devel] [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name
Posted by Liming Gao 6 years, 4 months ago
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


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#48155): https://edk2.groups.io/g/devel/message/48155
Mute This Topic: https://groups.io/mt/34297953/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-