diff options
author | Cœur <coeur@gmx.fr> | 2019-07-03 14:25:30 +0100 |
---|---|---|
committer | Leif Lindholm <leif.lindholm@linaro.org> | 2019-07-04 12:21:04 +0100 |
commit | c6a72cd79465594876626e738466441d8b3d61ca (patch) | |
tree | 569aa1367bf80e8ac3444ab0c39a8affa872ae32 /EmbeddedPkg/Application | |
parent | 16f3544ddd99c855d5fcb3e3bdbbed945a0c25d3 (diff) | |
download | edk2-c6a72cd79465594876626e738466441d8b3d61ca.tar.gz |
EmbeddedPkg: Fix various typos
Fix various typos in EmbeddedPkg.
Signed-off-by: Coeur <coeur@gmx.fr>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'EmbeddedPkg/Application')
-rw-r--r-- | EmbeddedPkg/Application/AndroidFastboot/AndroidBootImg.c | 2 | ||||
-rw-r--r-- | EmbeddedPkg/Application/AndroidFastboot/AndroidFastbootApp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/EmbeddedPkg/Application/AndroidFastboot/AndroidBootImg.c b/EmbeddedPkg/Application/AndroidFastboot/AndroidBootImg.c index 896ad29afc..54b7bee162 100644 --- a/EmbeddedPkg/Application/AndroidFastboot/AndroidBootImg.c +++ b/EmbeddedPkg/Application/AndroidFastboot/AndroidBootImg.c @@ -9,7 +9,7 @@ #include "AndroidFastbootApp.h"
// Find the kernel and ramdisk in an Android boot.img.
-// return EFI_INVALID_PARAMTER if the boot.img is invalid (i.e. doesn't have the
+// return EFI_INVALID_PARAMETER if the boot.img is invalid (i.e. doesn't have the
// right magic value),
// return EFI_NOT_FOUND if there was no kernel in the boot.img.
// Note that the Ramdisk is optional - *Ramdisk won't be touched if it isn't
diff --git a/EmbeddedPkg/Application/AndroidFastboot/AndroidFastbootApp.c b/EmbeddedPkg/Application/AndroidFastboot/AndroidFastbootApp.c index c8e89173e6..3e3f4b7eb2 100644 --- a/EmbeddedPkg/Application/AndroidFastboot/AndroidFastbootApp.c +++ b/EmbeddedPkg/Application/AndroidFastboot/AndroidFastbootApp.c @@ -300,7 +300,7 @@ AcceptCmd ( } else if (IS_LOWERCASE_ASCII (Command[0])) {
// Commands starting with lowercase ASCII characters are reserved for the
// Fastboot protocol. If we don't recognise it, it's probably the future
- // and there are new commmands in the protocol.
+ // and there are new commands in the protocol.
// (By the way, the "oem" command mentioned above makes this reservation
// redundant, but we handle it here to be spec-compliant)
SEND_LITERAL ("FAILCommand not recognised. Check Fastboot version.");
|