VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Xujun Leng <lengxujun2007@126.com> 2021-08-25 23:05:26 +0800 committer: Catalin Marinas <catalin.marinas@arm.com> 2021-08-25 18:21:58 +0100 commit: 5845e703f9b5f949dc1db4122b7fc6d8563048a2 parent: 24de5838db7044401c719042e95f646d72a78c49
Commit Summary:
arm64: mm: fix comment typo of pud_offset_phys()
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/arch/arm64/include/asm/pgtable.h b/arch/arm64/include/asm/pgtable.h
index f09bf5c02891..dfa76afa0ccf 100644
--- a/arch/arm64/include/asm/pgtable.h
+++ b/arch/arm64/include/asm/pgtable.h
@@ -715,7 +715,7 @@ static inline pud_t *p4d_pgtable(p4d_t p4d)
 	return (pud_t *)__va(p4d_page_paddr(p4d));
 }
 
-/* Find an entry in the frst-level page table. */
+/* Find an entry in the first-level page table. */
 #define pud_offset_phys(dir, addr)	(p4d_page_paddr(READ_ONCE(*(dir))) + pud_index(addr) * sizeof(pud_t))
 
 #define pud_set_fixmap(addr)		((pud_t *)set_fixmap_offset(FIX_PUD, addr))