On 2/19/26 19:44, Vincent Stehlé wrote:
Fix a few UEFI function names, as well as a typo.

Signed-off-by: Vincent Stehlé <[email protected]>
Cc: Heinrich Schuchardt <[email protected]>
Cc: Ilias Apalodimas <[email protected]>
Cc: Tom Rini <[email protected]>

Reviewed-by: Heinrich Schuchardt <[email protected]>

---
  lib/efi_selftest/efi_selftest_manageprotocols.c | 8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/efi_selftest/efi_selftest_manageprotocols.c 
b/lib/efi_selftest/efi_selftest_manageprotocols.c
index f07ff256ce1..a096e8c2b01 100644
--- a/lib/efi_selftest/efi_selftest_manageprotocols.c
+++ b/lib/efi_selftest/efi_selftest_manageprotocols.c
@@ -6,7 +6,7 @@
   *
   * This unit test checks the following protocol services:
   * InstallProtocolInterface, UninstallProtocolInterface,
- * InstallMultipleProtocolsInterfaces, UninstallMultipleProtocolsInterfaces,
+ * InstallMultipleProtocolInterfaces, UninstallMultipleProtocolInterfaces,
   * HandleProtocol, ProtocolsPerHandle,
   * LocateHandle, LocateHandleBuffer.
   */
@@ -188,7 +188,7 @@ static int execute(void)
        }
/*
-        * Test error handling in UninstallMultipleProtocols
+        * Test error handling in UninstallMultipleProtocolInterfaces
         *
         * These are the installed protocol interfaces on handle 2:
         *
@@ -238,7 +238,7 @@ static int execute(void)
                efi_st_error("LocateHandleBuffer failed to locate new 
handle\n");
                return EFI_ST_FAILURE;
        }
-       /* Clear the buffer, we are reusing it it the next step. */
+       /* Clear the buffer, we are reusing it in the next step. */
        boottime->set_mem(buffer, sizeof(efi_handle_t) * count, 0);
/*
@@ -287,7 +287,7 @@ static int execute(void)
        }
/*
-        * Test UninstallMultipleProtocols
+        * Test UninstallMultipleProtocolInterfaces
         */
        ret = boottime->uninstall_multiple_protocol_interfaces(
                                                handle2,

Reply via email to