From 7ab395ebef260f7ba6f3b63d88ef948fb0d127d7 Mon Sep 17 00:00:00 2001 From: "Liam R. Howlett" Date: Thu, 24 Feb 2022 20:38:07 -0500 Subject: [PATCH] mm.h: Drop extern Add this to 387dca4a26d4a as well Signed-off-by: Liam R. Howlett --- include/linux/mm.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 -- 2.50.1