diff options
author | Zhang, Chao B <chao.b.zhang@intel.com> | 2016-11-15 15:39:26 +0800 |
---|---|---|
committer | Zhang, Chao B <chao.b.zhang@intel.com> | 2016-11-15 15:45:31 +0800 |
commit | 0ab475c9a1d551a919430f3b6df6f652e4d2a3ed (patch) | |
tree | c00f084e90f08bb38b561a7538cc64c348d1f1f0 /SecurityPkg/Tcg/Tcg2Dxe | |
parent | 7c7453b5d6302227264b096b528ba9461b2a68d4 (diff) | |
download | edk2-0ab475c9a1d551a919430f3b6df6f652e4d2a3ed.tar.gz edk2-0ab475c9a1d551a919430f3b6df6f652e4d2a3ed.tar.bz2 edk2-0ab475c9a1d551a919430f3b6df6f652e4d2a3ed.zip |
SecurityPkg: Fix typos in comments
This patch fixes the following typos:
- intialized -> initialized
- TURE -> TRUE
- successull -> successfully
- hanlder -> handler
- funciton -> function
- Seperator -> Separator
- Sumbit -> Submit
Also convert EFI_D_ERROR to DEBUG_ERROR for some debug messages.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Gary Lin <glin@suse.com>
Reviewed-by: Chao Zhang <chao.b.zhang@intel.com>
Diffstat (limited to 'SecurityPkg/Tcg/Tcg2Dxe')
-rw-r--r-- | SecurityPkg/Tcg/Tcg2Dxe/Tcg2Dxe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SecurityPkg/Tcg/Tcg2Dxe/Tcg2Dxe.c b/SecurityPkg/Tcg/Tcg2Dxe/Tcg2Dxe.c index db8d662f80..f0545a6df8 100644 --- a/SecurityPkg/Tcg/Tcg2Dxe/Tcg2Dxe.c +++ b/SecurityPkg/Tcg/Tcg2Dxe/Tcg2Dxe.c @@ -2073,7 +2073,7 @@ OnReadyToBoot ( for (PcrIndex = 0; PcrIndex < 7; PcrIndex++) {
Status = MeasureSeparatorEvent (PcrIndex);
if (EFI_ERROR (Status)) {
- DEBUG ((EFI_D_ERROR, "Seperator Event not Measured. Error!\n"));
+ DEBUG ((DEBUG_ERROR, "Separator Event not Measured. Error!\n"));
}
}
|