aboutsummaryrefslogtreecommitdiff
path: root/include/asm-mips/pgtable-32.h
diff options
context:
space:
mode:
authorGravatar Franck Bui-Huu <fbuihuu@gmail.com> 2006-12-05 10:39:56 +0100
committerGravatar Ralf Baechle <ralf@linux-mips.org> 2006-12-06 20:16:08 +0000
commit5b70a31708c958cb259e9c6cbecf7190521c856e (patch)
tree3f635bb2fa64843b4749405d1e67c7878e41fc72 /include/asm-mips/pgtable-32.h
parentMerge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6 (diff)
downloadlinux-5b70a31708c958cb259e9c6cbecf7190521c856e.tar.gz
linux-5b70a31708c958cb259e9c6cbecf7190521c856e.tar.bz2
linux-5b70a31708c958cb259e9c6cbecf7190521c856e.zip
[MIPS] pte_offset(dir,addr): parenthesis fix
This patch adds missing parenthesis around 'dir' argument in pte_offset() macro definition. It also removes an extra space in the definition of pte_offset_kernel() macro. Signed-off-by: Franck Bui-Huu <fbuihuu@gmail.com> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/pgtable-32.h')
-rw-r--r--include/asm-mips/pgtable-32.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-mips/pgtable-32.h b/include/asm-mips/pgtable-32.h
index d20f2e9b28be..2fbd47eba32d 100644
--- a/include/asm-mips/pgtable-32.h
+++ b/include/asm-mips/pgtable-32.h
@@ -156,9 +156,9 @@ pfn_pte(unsigned long pfn, pgprot_t prot)
#define __pte_offset(address) \
(((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
#define pte_offset(dir, address) \
- ((pte_t *) (pmd_page_vaddr(*dir)) + __pte_offset(address))
-#define pte_offset_kernel(dir, address) \
- ((pte_t *) pmd_page_vaddr(*(dir)) + __pte_offset(address))
+ ((pte_t *) pmd_page_vaddr(*(dir)) + __pte_offset(address))
+#define pte_offset_kernel(dir, address) \
+ ((pte_t *) pmd_page_vaddr(*(dir)) + __pte_offset(address))
#define pte_offset_map(dir, address) \
((pte_t *)page_address(pmd_page(*(dir))) + __pte_offset(address))