aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-05-24 18:50:19 -0600
committerJason A. Donenfeld <Jason@zx2c4.com>2020-09-30 16:25:42 +0200
commit39a444e91c578b65bf238982d1782d93c6654676 (patch)
tree5dfad6c1856b8d1547cbd3d3fb7e9577ee7a376a
parentx86: pud_trans_huge is already defined generically for the nop inline (diff)
downloadrhel7-kernel-misery-39a444e91c578b65bf238982d1782d93c6654676.tar.xz
rhel7-kernel-misery-39a444e91c578b65bf238982d1782d93c6654676.zip
huge_mm: remove trailing semicolon
The trialing semicolon before the function body is invalid C and resulted in a compiler error. This was probably due to a copy and paste error. This commit removes the extra semicolon. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--include/linux/huge_mm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h
index 12d5f1aec45..b608e46a3b5 100644
--- a/include/linux/huge_mm.h
+++ b/include/linux/huge_mm.h
@@ -362,7 +362,7 @@ static inline int pud_trans_huge_lock(pud_t *pud, struct vm_area_struct *vma,
return 0;
}
-static inline int do_huge_pmd_numa_page(struct vm_fault *vmf, pmd_t orig_pmd);
+static inline int do_huge_pmd_numa_page(struct vm_fault *vmf, pmd_t orig_pmd)
{
return 0;
}