Commit 7d4e2dcf authored by Qian Cai's avatar Qian Cai Committed by Will Deacon
Browse files

arm64/mm: fix variable 'pud' set but not used



GCC throws a warning,

arch/arm64/mm/mmu.c: In function 'pud_free_pmd_page':
arch/arm64/mm/mmu.c:1033:8: warning: variable 'pud' set but not used
[-Wunused-but-set-variable]
  pud_t pud;
        ^~~

because pud_table() is a macro and compiled away. Fix it by making it a
static inline function and for pud_sect() as well.

Signed-off-by: default avatarQian Cai <cai@lca.pw>
Signed-off-by: default avatarWill Deacon <will@kernel.org>
parent 760d8ed0
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -447,8 +447,8 @@ extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
				 PMD_TYPE_SECT)
				 PMD_TYPE_SECT)


#if defined(CONFIG_ARM64_64K_PAGES) || CONFIG_PGTABLE_LEVELS < 3
#if defined(CONFIG_ARM64_64K_PAGES) || CONFIG_PGTABLE_LEVELS < 3
#define pud_sect(pud)		(0)
static inline bool pud_sect(pud_t pud) { return false; }
#define pud_table(pud)		(1)
static inline bool pud_table(pud_t pud) { return true; }
#else
#else
#define pud_sect(pud)		((pud_val(pud) & PUD_TYPE_MASK) == \
#define pud_sect(pud)		((pud_val(pud) & PUD_TYPE_MASK) == \
				 PUD_TYPE_SECT)
				 PUD_TYPE_SECT)