[PATCH] asm-generic/tlb: Fix duplicate included asm-generic/tlb.h

From: Jiapeng Chong
Date: Fri May 14 2021 - 05:14:53 EST


Clean up the following includecheck warning:

./arch/arm/include/asm/tlb.h: asm-generic/tlb.h is included more than
once.

No functional change.

Reported-by: Abaci Robot <abaci@xxxxxxxxxxxxxxxxx>
Signed-off-by: Jiapeng Chong <jiapeng.chong@xxxxxxxxxxxxxxxxx>
---
arch/arm/include/asm/tlb.h | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/arch/arm/include/asm/tlb.h b/arch/arm/include/asm/tlb.h
index b8cbe03..df4a6ea 100644
--- a/arch/arm/include/asm/tlb.h
+++ b/arch/arm/include/asm/tlb.h
@@ -15,6 +15,7 @@
#define __ASMARM_TLB_H

#include <asm/cacheflush.h>
+#include <asm-generic/tlb.h>

#ifndef CONFIG_MMU

@@ -22,8 +23,6 @@

#define tlb_flush(tlb) ((void) tlb)

-#include <asm-generic/tlb.h>
-
#else /* !CONFIG_MMU */

#include <linux/swap.h>
@@ -34,8 +33,6 @@ static inline void __tlb_remove_table(void *_table)
free_page_and_swap_cache((struct page *)_table);
}

-#include <asm-generic/tlb.h>
-
static inline void
__pte_free_tlb(struct mmu_gather *tlb, pgtable_t pte, unsigned long addr)
{
--
1.8.3.1