summaryrefslogtreecommitdiffstats
path: root/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/AsmFuncs.nasm
diff options
context:
space:
mode:
authorAntoine Coeur <coeur@gmx.fr>2020-02-07 02:08:24 +0100
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2020-02-10 22:30:07 +0000
commita302263ebb33018bccaeb3c10152e7f8ea4cda6f (patch)
tree86200df365a68ba90f8c6f6e98cd63b6a174cd65 /SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/AsmFuncs.nasm
parentc38f0816e788c2cbce28bd2f68d9d288745d3ab4 (diff)
downloadedk2-a302263ebb33018bccaeb3c10152e7f8ea4cda6f.tar.gz
edk2-a302263ebb33018bccaeb3c10152e7f8ea4cda6f.tar.bz2
edk2-a302263ebb33018bccaeb3c10152e7f8ea4cda6f.zip
SourceLevelDebugPkg/DebugAgent: Fix various typos
Fix various typos in documentation, comments and debug strings. Cc: Hao A Wu <hao.a.wu@intel.com> Signed-off-by: Antoine Coeur <coeur@gmx.fr> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Hao A Wu <hao.a.wu@intel.com> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com> Message-Id: <20200207010831.9046-72-philmd@redhat.com>
Diffstat (limited to 'SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/AsmFuncs.nasm')
-rw-r--r--SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/AsmFuncs.nasm4
1 files changed, 2 insertions, 2 deletions
diff --git a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/AsmFuncs.nasm b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/AsmFuncs.nasm
index a5a734a463..912256ba45 100644
--- a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/AsmFuncs.nasm
+++ b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/AsmFuncs.nasm
@@ -226,7 +226,7 @@ NoExtrPush:
push ebx ; temporarily save value of ebx on stack
cpuid ; use CPUID to determine if FXSAVE/FXRESTOR and
; DE are supported
- pop ebx ; retore value of ebx that was overwritten by CPUID
+ pop ebx ; restore value of ebx that was overwritten by CPUID
mov eax, cr4
push eax ; push cr4 firstly
test edx, BIT24 ; Test for FXSAVE/FXRESTOR support
@@ -407,7 +407,7 @@ NoExtrPush:
mov esp, ebp
pop ebp ; restore ebp maybe updated
pop esp ; restore esp maybe updated
- sub esp, 4 * 3 ; restore interupt pushced stack
+ sub esp, 4 * 3 ; restore interrupt pushced stack
iretd