diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2018-10-18 05:22:06 +0000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-12-19 18:56:32 +1100 |
commit | 584dbc7727a22459dfcb6e4c9faef6467d08ab5e (patch) | |
tree | 15e17fb9c3c67ccbfdc4d40c62df3c574a3e6a4f /arch | |
parent | 6bf752daca07c85c181159f75dcf65b12056883b (diff) | |
download | linux-stable-584dbc7727a22459dfcb6e4c9faef6467d08ab5e.tar.gz linux-stable-584dbc7727a22459dfcb6e4c9faef6467d08ab5e.tar.bz2 linux-stable-584dbc7727a22459dfcb6e4c9faef6467d08ab5e.zip |
powerpc/mm: remove unused variable
In file included from ./include/linux/hugetlb.h:445:0,
from arch/powerpc/kernel/setup-common.c:37:
./arch/powerpc/include/asm/hugetlb.h: In function ‘huge_ptep_clear_flush’:
./arch/powerpc/include/asm/hugetlb.h:154:8: error: variable ‘pte’ set but not used [-Werror=unused-but-set-variable]
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/include/asm/hugetlb.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/include/asm/hugetlb.h b/arch/powerpc/include/asm/hugetlb.h index 62a0ca02ca7d..8d40565ad0c3 100644 --- a/arch/powerpc/include/asm/hugetlb.h +++ b/arch/powerpc/include/asm/hugetlb.h @@ -129,8 +129,7 @@ static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm, static inline void huge_ptep_clear_flush(struct vm_area_struct *vma, unsigned long addr, pte_t *ptep) { - pte_t pte; - pte = huge_ptep_get_and_clear(vma->vm_mm, addr, ptep); + huge_ptep_get_and_clear(vma->vm_mm, addr, ptep); flush_hugetlb_page(vma, addr); } |