public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 0/2] Capsule: Fix typo 'Press' to 'Process'
@ 2018-07-10 10:22 Star Zeng
  2018-07-10 10:22 ` [PATCH 1/2] MdeModulePkg DxeCapsuleLibFmp: " Star Zeng
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Star Zeng @ 2018-07-10 10:22 UTC (permalink / raw)
  To: edk2-devel; +Cc: Star Zeng, Michael D Kinney, Jiewen Yao, Ming Shao

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Ming Shao <ming.shao@intel.com>

Star Zeng (2):
  MdeModulePkg DxeCapsuleLibFmp: Fix typo 'Press' to 'Process'
  SignedCapsulePkg RecoveryModuleLoadPei: Fix typo 'Press' to 'Process'

 MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c                 | 2 +-
 .../Universal/RecoveryModuleLoadPei/RecoveryModuleLoadPei.c           | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.7.0.windows.1



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] MdeModulePkg DxeCapsuleLibFmp: Fix typo 'Press' to 'Process'
  2018-07-10 10:22 [PATCH 0/2] Capsule: Fix typo 'Press' to 'Process' Star Zeng
@ 2018-07-10 10:22 ` Star Zeng
  2018-07-10 10:22 ` [PATCH 2/2] SignedCapsulePkg RecoveryModuleLoadPei: " Star Zeng
  2018-07-11  7:21 ` [PATCH 0/2] Capsule: " Yao, Jiewen
  2 siblings, 0 replies; 4+ messages in thread
From: Star Zeng @ 2018-07-10 10:22 UTC (permalink / raw)
  To: edk2-devel; +Cc: Star Zeng, Michael D Kinney, Jiewen Yao, Ming Shao

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Ming Shao <ming.shao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Star Zeng <star.zeng@intel.com>
---
 MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c b/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c
index ab41df0eb0a4..a1347b5ce67c 100644
--- a/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c
+++ b/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c
@@ -1425,7 +1425,7 @@ ProcessCapsuleImage (
     }
 
     //
-    // Press EFI FMP Capsule
+    // Process EFI FMP Capsule
     //
     DEBUG((DEBUG_INFO, "ProcessFmpCapsuleImage ...\n"));
     Status = ProcessFmpCapsuleImage(CapsuleHeader);
-- 
2.7.0.windows.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] SignedCapsulePkg RecoveryModuleLoadPei: Fix typo 'Press' to 'Process'
  2018-07-10 10:22 [PATCH 0/2] Capsule: Fix typo 'Press' to 'Process' Star Zeng
  2018-07-10 10:22 ` [PATCH 1/2] MdeModulePkg DxeCapsuleLibFmp: " Star Zeng
@ 2018-07-10 10:22 ` Star Zeng
  2018-07-11  7:21 ` [PATCH 0/2] Capsule: " Yao, Jiewen
  2 siblings, 0 replies; 4+ messages in thread
From: Star Zeng @ 2018-07-10 10:22 UTC (permalink / raw)
  To: edk2-devel; +Cc: Star Zeng, Michael D Kinney, Jiewen Yao, Ming Shao

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Ming Shao <ming.shao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Star Zeng <star.zeng@intel.com>
---
 .../Universal/RecoveryModuleLoadPei/RecoveryModuleLoadPei.c           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/SignedCapsulePkg/Universal/RecoveryModuleLoadPei/RecoveryModuleLoadPei.c b/SignedCapsulePkg/Universal/RecoveryModuleLoadPei/RecoveryModuleLoadPei.c
index c22e3a487f3b..e14427cf5bb0 100644
--- a/SignedCapsulePkg/Universal/RecoveryModuleLoadPei/RecoveryModuleLoadPei.c
+++ b/SignedCapsulePkg/Universal/RecoveryModuleLoadPei/RecoveryModuleLoadPei.c
@@ -9,7 +9,7 @@
   ProcessRecoveryCapsule(), ProcessFmpCapsuleImage(), ProcessRecoveryImage(),
   ValidateFmpCapsule() will receive untrusted input and do basic validation.
 
-Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
 This program and the accompanying materials
 are licensed and made available under the terms and conditions of the BSD License
 which accompanies this distribution.  The full text of the license may be found at
@@ -703,7 +703,7 @@ ProcessRecoveryCapsule (
     }
 
     //
-    // Press EFI FMP Capsule
+    // Process EFI FMP Capsule
     //
     DEBUG((DEBUG_INFO, "ProcessFmpCapsuleImage ...\n"));
     Status = ProcessFmpCapsuleImage(CapsuleHeader, IsSystemFmp);
-- 
2.7.0.windows.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/2] Capsule: Fix typo 'Press' to 'Process'
  2018-07-10 10:22 [PATCH 0/2] Capsule: Fix typo 'Press' to 'Process' Star Zeng
  2018-07-10 10:22 ` [PATCH 1/2] MdeModulePkg DxeCapsuleLibFmp: " Star Zeng
  2018-07-10 10:22 ` [PATCH 2/2] SignedCapsulePkg RecoveryModuleLoadPei: " Star Zeng
@ 2018-07-11  7:21 ` Yao, Jiewen
  2 siblings, 0 replies; 4+ messages in thread
From: Yao, Jiewen @ 2018-07-11  7:21 UTC (permalink / raw)
  To: Zeng, Star, edk2-devel@lists.01.org; +Cc: Kinney, Michael D, Shao, Ming

Series reviewed-by: Jiewen.yao@intel.com

> -----Original Message-----
> From: Zeng, Star
> Sent: Tuesday, July 10, 2018 6:23 PM
> To: edk2-devel@lists.01.org
> Cc: Zeng, Star <star.zeng@intel.com>; Kinney, Michael D
> <michael.d.kinney@intel.com>; Yao, Jiewen <jiewen.yao@intel.com>; Shao,
> Ming <ming.shao@intel.com>
> Subject: [PATCH 0/2] Capsule: Fix typo 'Press' to 'Process'
> 
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Ming Shao <ming.shao@intel.com>
> 
> Star Zeng (2):
>   MdeModulePkg DxeCapsuleLibFmp: Fix typo 'Press' to 'Process'
>   SignedCapsulePkg RecoveryModuleLoadPei: Fix typo 'Press' to 'Process'
> 
>  MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c
> | 2 +-
>  .../Universal/RecoveryModuleLoadPei/RecoveryModuleLoadPei.c           |
> 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> --
> 2.7.0.windows.1



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-07-11  7:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-10 10:22 [PATCH 0/2] Capsule: Fix typo 'Press' to 'Process' Star Zeng
2018-07-10 10:22 ` [PATCH 1/2] MdeModulePkg DxeCapsuleLibFmp: " Star Zeng
2018-07-10 10:22 ` [PATCH 2/2] SignedCapsulePkg RecoveryModuleLoadPei: " Star Zeng
2018-07-11  7:21 ` [PATCH 0/2] Capsule: " Yao, Jiewen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox