efi_selftest: fix typos
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 27 Sep 2018 18:44:40 +0000 (20:44 +0200)
committerAlexander Graf <agraf@suse.de>
Sun, 2 Dec 2018 20:59:36 +0000 (21:59 +0100)
fix typos
correct the header comment of efi_selftest_variables.c

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
lib/efi_selftest/efi_selftest_config_table.c
lib/efi_selftest/efi_selftest_controllers.c
lib/efi_selftest/efi_selftest_crc32.c
lib/efi_selftest/efi_selftest_event_groups.c
lib/efi_selftest/efi_selftest_events.c
lib/efi_selftest/efi_selftest_exception.c
lib/efi_selftest/efi_selftest_fdt.c
lib/efi_selftest/efi_selftest_textinput.c
lib/efi_selftest/efi_selftest_tpl.c
lib/efi_selftest/efi_selftest_variables.c
lib/efi_selftest/efi_selftest_watchdog.c

index 2aa3fc72847572025b3bab68a8cd17a98a9d741f..0bc5da6b0ce3b9e73da414e3d84cbe3439993b91 100644 (file)
@@ -18,7 +18,7 @@ static efi_guid_t table_guid =
                 0x17, 0x2e, 0x51, 0x6b, 0x49, 0x75);
 
 /*
- * Notification function, increments the notfication count if parameter
+ * Notification function, increments the notification count if parameter
  * context is provided.
  *
  * @event      notified event
@@ -33,23 +33,23 @@ static void EFIAPI notify(struct efi_event *event, void *context)
 }
 
 /*
- * Check crc32 of a table.
+ * Check CRC32 of a table.
  */
 static int check_table(const void *table)
 {
        efi_status_t ret;
        u32 crc32, res;
-       /* Casting from const to not const */
+       /* Casting from constant to not constant */
        struct efi_table_hdr *hdr = (struct efi_table_hdr *)table;
 
        crc32 = hdr->crc32;
        /*
-        * Setting the crc32 of the 'const' table to zero is easier than
+        * Setting the CRC32 of the 'const' table to zero is easier than
         * copying
         */
        hdr->crc32 = 0;
        ret = boottime->calculate_crc32(table, hdr->headersize, &res);
-       /* Reset table crc32 so it stays constant */
+       /* Reset table CRC32 so it stays constant */
        hdr->crc32 = crc32;
        if (ret != EFI_ST_SUCCESS) {
                efi_st_error("CalculateCrc32 failed\n");
@@ -203,7 +203,7 @@ static int execute(void)
                return EFI_ST_FAILURE;
        }
        if (tabcnt > 1) {
-               efi_st_error("Duplicate table guid\n");
+               efi_st_error("Duplicate table GUID\n");
                return EFI_ST_FAILURE;
        }
        if (table != &tables[1]) {
index d08c377c72c0d2033aa868bbca4580e34f8b8547..38720bb63d398d5c2d62a57917e7c86654b916d5 100644 (file)
@@ -33,7 +33,7 @@ static efi_handle_t handle_driver;
  * Count child controllers
  *
  * @handle     handle on which child controllers are installed
- * @protocol   protocol for which the child controlles where installed
+ * @protocol   protocol for which the child controllers were installed
  * @count      number of child controllers
  * @return     status code
  */
index 8555b8f1140278d8991f9da785318f1a9779efc7..4881e8ac6f2d888822c8faf7144251f6864e61bf 100644 (file)
@@ -5,7 +5,7 @@
  * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de>
  *
  * This unit test checks the CalculateCrc32 bootservice and checks the
- * headers of the system table, the boot services tablle, and the runtime
+ * headers of the system table, the boot services table, and the runtime
  * services table before and after ExitBootServices().
  */
 
@@ -19,7 +19,7 @@ static int check_table(const void *table)
 {
        efi_status_t ret;
        u32 crc32, res;
-       /* Casting from const to not const */
+       /* Casting from constant to not constant */
        struct efi_table_hdr *hdr = (struct efi_table_hdr *)table;
 
        if (!hdr->signature) {
index 9b3c5132ef741f6d61c519de4f072440b5590423..5a7980c5d0b853fe8c93710f9bf6f42931c43da0 100644 (file)
@@ -19,7 +19,7 @@ static efi_guid_t event_group =
                 0x0e, 0x5b, 0x45, 0xc0, 0x56, 0x91);
 
 /*
- * Notification function, increments the notfication count if parameter
+ * Notification function, increments the notification count if parameter
  * context is provided.
  *
  * @event      notified event
@@ -114,7 +114,7 @@ static int execute(void)
                                              (unsigned int)i, (unsigned int)j,
                                              (unsigned int)counter[j]);
                                efi_st_error(
-                                       "Nofification function not called\n");
+                                       "Notification function not called\n");
                                return EFI_ST_FAILURE;
                        }
                }
index 47f9f99318db32f6cb77f30e2351c28fd12ce937..ed99a538045a6e90d26b2b388726c514b6058231 100644 (file)
@@ -17,7 +17,7 @@ static unsigned int timer_ticks;
 static struct efi_boot_services *boottime;
 
 /*
- * Notification function, increments the notfication count if parameter
+ * Notification function, increments the notification count if parameter
  * context is provided.
  *
  * @event      notified event
index 2ac1796c3bdc44e17ca9c3321264409310cbed9d..76cfb88d7c7c78afa33c60018b29cc0e228fab8d 100644 (file)
@@ -4,7 +4,7 @@
  *
  * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de>
  *
- * Test the handling of execptions by trying to execute an undefined
+ * Test the handling of exceptions by trying to execute an undefined
  * instruction.
  */
 
@@ -37,7 +37,7 @@ static int execute(void)
 {
        undefined_instruction();
 
-       efi_st_error("An undefined instruction exeption was not raised\n");
+       efi_st_error("An undefined instruction exception was not raised\n");
 
        return EFI_ST_FAILURE;
 }
index c7bc242b5c4bbfabf3944fe026f5620085d87c93..d545d518120d6e12ed743ee29bcbdaf84650fcc2 100644 (file)
@@ -16,7 +16,7 @@
 static struct efi_boot_services *boottime;
 static const char *fdt;
 
-/* This should be sufficent for */
+/* This should be sufficient for */
 #define BUFFERSIZE 0x100000
 
 static efi_guid_t fdt_guid = EFI_FDT_GUID;
index 164fbffe6c2462cfc0f991a81daee6f01e9f7b36..b90671cdd207c0a9ec7ffd487047b6532ddce6f0 100644 (file)
@@ -5,7 +5,7 @@
  * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de>
  *
  * Provides a unit test for the EFI_SIMPLE_TEXT_INPUT_PROTOCOL.
- * The unicode character and the scan code are printed for text
+ * The Unicode character and the scan code are printed for text
  * input. To run the test:
  *
  *     setenv efi_selftest text input
index 61ae46b7976be511d287931893dcb861923993f2..97d256abe4f482fe236d4c032c4319aaea691242 100644 (file)
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0+
 /*
- * efi_selftest_events
+ * efi_selftest_tpl
  *
  * Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de>
  *
index 146378fb9a293909d56b3120450f824c31f89cb9..e4c389a872fa4634a5458654e7afdfc46fbd29fd 100644 (file)
@@ -4,10 +4,8 @@
  *
  * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de>
  *
- * This unit test checks the following protocol services:
- * ConnectController, DisconnectController,
- * InstallProtocol, ReinstallProtocol, UninstallProtocol,
- * OpenProtocol, CloseProtcol, OpenProtocolInformation
+ * This unit test checks the runtime services for variables:
+ * GetVariable, GetNextVariableName, SetVariable, QueryVariableInfo.
  */
 
 #include <efi_selftest.h>
index bff2330918c1e09eff74075b407cbc8641c4c77e..cbc6761721ce518eb61c66eeb04973381be6e09e 100644 (file)
@@ -35,7 +35,7 @@ static struct notify_context notification_context;
 static bool watchdog_reset;
 
 /*
- * Notification function, increments the notfication count if parameter
+ * Notification function, increments the notification count if parameter
  * context is provided.
  *
  * @event      notified event