From: Liam R. Howlett Date: Fri, 25 Feb 2022 01:38:07 +0000 (-0500) Subject: mm.h: Drop extern X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7ab395ebef260f7ba6f3b63d88ef948fb0d127d7;p=users%2Fjedix%2Flinux-maple.git mm.h: Drop extern Add this to 387dca4a26d4a as well Signed-off-by: Liam R. Howlett --- diff --git a/include/linux/mm.h b/include/linux/mm.h index 2d6221a28f03..49bfd0eb8792 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -2790,9 +2790,8 @@ extern struct vm_area_struct * find_vma_prev(struct mm_struct * mm, unsigned lon * Look up the first VMA which intersects the interval [start_addr, end_addr) * NULL if none. Assume start_addr < end_addr. */ -extern struct vm_area_struct *find_vma_intersection(struct mm_struct *mm, - unsigned long start_addr, - unsigned long end_addr); +struct vm_area_struct *find_vma_intersection(struct mm_struct *mm, + unsigned long start_addr, unsigned long end_addr); /** * vma_lookup() - Find a VMA at a specific address