spelling
authorjsg <jsg@openbsd.org>
Fri, 23 Apr 2021 05:40:06 +0000 (05:40 +0000)
committerjsg <jsg@openbsd.org>
Fri, 23 Apr 2021 05:40:06 +0000 (05:40 +0000)
sys/arch/riscv64/dev/riscv_cpu_intc.c
sys/arch/riscv64/dev/timer.c
sys/arch/riscv64/riscv64/fpu.c
sys/arch/riscv64/riscv64/intr.c
sys/arch/riscv64/riscv64/machdep.c
sys/arch/riscv64/riscv64/pmap.c

index 1b1448c..6a22c8c 100644 (file)
@@ -117,7 +117,7 @@ riscv_intc_irq_handler(void *frame)
        ih = intc_handler[irq];
        if (ih->ih_func(frame) == 0)
 #ifdef DEBUG_INTC
-               printf("fail in handleing irq %d %s\n", irq, ih->ih_name);
+               printf("fail in handling irq %d %s\n", irq, ih->ih_name);
 #else
                ;
 #endif /* DEBUG_INTC */
index f62a404..946e28d 100644 (file)
@@ -272,7 +272,7 @@ riscv_timer_cpu_initclocks()
        sc->sc_ticks_err_cnt = sc->sc_ticks_per_second % hz;
        pc->pc_ticks_err_sum = 0;
 
-       /* configure virtual timer interupt */
+       /* configure virtual timer interrupt */
        sc->sc_ih = riscv_intc_intr_establish(IRQ_TIMER_SUPERVISOR, 0,
                        riscv_timer_intr, NULL, "riscv_timer");
 
index 2128dc0..a992b0a 100644 (file)
@@ -234,7 +234,7 @@ fpu_load(struct proc *p)
        /*
         * pcb->pcb_fpcpu and ci->ci_fpuproc are activated here
         * to indicate that the fpu context is correctly loaded on
-        * this cpu. XXX block interupts for these saves ?
+        * this cpu. XXX block interrupts for these saves ?
         */
        pcb->pcb_fpcpu = ci;
        ci->ci_fpuproc = p;
index baadb10..639cbe6 100644 (file)
@@ -586,7 +586,7 @@ void
 setstatclockrate(int new)
 {
        if (riscv_clock_func.setstatclockrate == NULL) {
-               panic("riscv_clock_func.setstatclockrate not intialized");
+               panic("riscv_clock_func.setstatclockrate not initialized");
        }
        riscv_clock_func.setstatclockrate(new);
 }
index 9feb19c..1b50dc1 100644 (file)
@@ -791,7 +791,7 @@ initriscv(struct riscv_bootparams *rbp)
                        end = MIN(reg.addr + reg.size, (paddr_t)-PAGE_SIZE);
 
                        /*
-                        * The intial 64MB block is not excluded, so we need
+                        * The initial 64MB block is not excluded, so we need
                         * to make sure we don't add it here.
                         */
                        if (start < memend && end > memstart) {
index 0598693..a38e92f 100644 (file)
@@ -417,7 +417,7 @@ PTED_VALID(struct pte_desc *pted)
  * One issue of making this a single data structure is that two pointers are
  * wasted for every page which does not map ram (device mappings), this
  * should be a low percentage of mapped pages in the system, so should not
- * have too noticable unnecessary ram consumption.
+ * have too noticeable unnecessary ram consumption.
  */
 
 void
@@ -1785,7 +1785,7 @@ pmap_fault_fixup(pmap_t pm, vaddr_t va, vm_prot_t ftype, int user)
 
                /*
                 * Exec always includes a reference. Since we now know
-                * the page has been accesed, we can enable read as well
+                * the page has been accessed, we can enable read as well
                 * if UVM allows it.
                 */
                atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);