Thanks

Tom


Index: sys/arch/amd64/stand/efiboot/efiboot.c
===================================================================
RCS file: /home/OpenBSD/cvs/src/sys/arch/amd64/stand/efiboot/efiboot.c,v
retrieving revision 1.12
diff -u -p -u -r1.12 efiboot.c
--- sys/arch/amd64/stand/efiboot/efiboot.c      15 May 2016 22:48:02 -0000      
1.12
+++ sys/arch/amd64/stand/efiboot/efiboot.c      10 Jun 2016 18:14:14 -0000
@@ -466,7 +466,7 @@ efi_cons_getshifts(dev_t dev)
        return (0);
 }
 
-/* XXX: serial console is not supporte yet */
+/* XXX: serial console is not supported yet */
 int comspeed = 9600;
 int com_addr = -1;
 int com_speed = -1;
@@ -477,7 +477,7 @@ int com_speed = -1;
 /*
  * ACPI GUID is confusing in UEFI spec.
  * {EFI_,}_ACPI_20_TABLE_GUID or EFI_ACPI_TABLE_GUID means
- * ACPI 2.0 or abobe.
+ * ACPI 2.0 or above.
  */
 static EFI_GUID acpi_guid = ACPI_20_TABLE_GUID;
 static EFI_GUID smbios_guid = SMBIOS_TABLE_GUID;
Index: sys/arch/amd64/stand/libsa/cmd_i386.c
===================================================================
RCS file: /home/OpenBSD/cvs/src/sys/arch/amd64/stand/libsa/cmd_i386.c,v
retrieving revision 1.9
diff -u -p -u -r1.9 cmd_i386.c
--- sys/arch/amd64/stand/libsa/cmd_i386.c       8 Nov 2015 00:42:39 -0000       
1.9
+++ sys/arch/amd64/stand/libsa/cmd_i386.c       10 Jun 2016 18:14:14 -0000
@@ -183,7 +183,7 @@ Xmemory(void)
                                        p++;
                        }
 
-                       /* Handle (possibly non-existant) address part */
+                       /* Handle (possibly non-existent) address part */
                        switch (*p) {
                                case '@':
                                        addr = strtoll(p + 1, NULL, 0);
Index: sys/arch/amd64/stand/libsa/memprobe.c
===================================================================
RCS file: /home/OpenBSD/cvs/src/sys/arch/amd64/stand/libsa/memprobe.c,v
retrieving revision 1.16
diff -u -p -u -r1.16 memprobe.c
--- sys/arch/amd64/stand/libsa/memprobe.c       8 Oct 2015 14:46:05 -0000       
1.16
+++ sys/arch/amd64/stand/libsa/memprobe.c       10 Jun 2016 18:14:14 -0000
@@ -281,7 +281,7 @@ memprobe(void)
                         * Compute compatibility values:
                         * cnvmem -- is the upper boundary of conventional
                         *      memory (below IOM_BEGIN (=640k))
-                        * extmem -- is the size of the contignous extended
+                        * extmem -- is the size of the contiguous extended
                         *      memory segment starting at 1M
                         *
                         * We ignore "good" memory in the 640K-1M hole.
@@ -346,7 +346,7 @@ mem_limit(long long ml)
                if (p->type != BIOS_MAP_FREE)
                        continue;
 
-               /* Wholy above limit, nuke it */
+               /* Wholly above limit, nuke it */
                if ((sp >= ml) && (ep >= ml)) {
                        bcopy (p + 1, p, (char *)bios_memmap +
                               sizeof(bios_memmap) - (char *)p);
Index: sys/arch/amd64/stand/libsa/pxe.h
===================================================================
RCS file: /home/OpenBSD/cvs/src/sys/arch/amd64/stand/libsa/pxe.h,v
retrieving revision 1.6
diff -u -p -u -r1.6 pxe.h
--- sys/arch/amd64/stand/libsa/pxe.h    2 Mar 2011 07:15:45 -0000       1.6
+++ sys/arch/amd64/stand/libsa/pxe.h    10 Jun 2016 18:14:14 -0000
@@ -346,7 +346,7 @@ typedef struct {
 #      define PXENV_UNDI_ISR_OUT_NOT_OUTS      1
 
        /*
-        * one of these will bre returnd for PXEND_UNDI_ISR_IN_PROCESS
+        * one of these will be returned for PXEND_UNDI_ISR_IN_PROCESS
         * and PXENV_UNDI_ISR_IN_GET_NEXT
         */
 #      define PXENV_UNDI_ISR_OUT_DONE          0

Reply via email to