From ed5b99895ff4b038e428df9e6d9597cadaefe3bb Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Thu, 17 Nov 2022 16:02:43 -0500 Subject: [PATCH 13/52] mips: Fix a typo in a comment No functional change intended. --- sys/mips/include/pte.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mips/include/pte.h b/sys/mips/include/pte.h index 5688553708b5..819e65010dee 100644 --- a/sys/mips/include/pte.h +++ b/sys/mips/include/pte.h @@ -527,7 +527,7 @@ TLBLO_PTE_TO_PA(pt_entry_t pte) * * Get the superpage index from the PTE by shifting it left by * PTE_PSIDX_NBITS_TO_LEFT (clearing the upper softbits) and then back to the - * right by (PTE_PSIDX_NBITS_TO_RIGHT + PTE_PSIDX_NBITS_TO_RIGHT) clearing + * right by (PTE_PSIDX_NBITS_TO_RIGHT + PTE_PSIDX_NBITS_TO_LEFT) clearing * all the lower bits in the process. */ #define GET_SUPERPAGE_IDX(r) \ -- 2.41.0