From: Mariusz Kozlowski Another parenthesis fix. Signed-off-by: Mariusz Kozlowski Cc: Benjamin Herrenschmidt Cc: Martin Schwidefsky Signed-off-by: Andrew Morton --- include/asm-parisc/pgalloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-parisc/pgalloc.h~config_highpte-vs-sub-page-page-tables-fix-2 include/asm-parisc/pgalloc.h --- a/include/asm-parisc/pgalloc.h~config_highpte-vs-sub-page-page-tables-fix-2 +++ a/include/asm-parisc/pgalloc.h @@ -141,7 +141,7 @@ static inline void pte_free_kernel(struc static inline void pte_free_kernel(struct mm_struct *mm, struct page *pte) { pgtable_page_dtor(pte); - pte_free_kernel(page_address((pte)); + pte_free_kernel(page_address(pte)); } #define check_pgt_cache() do { } while (0) _