summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRussell King <rmk@flint.arm.linux.org.uk>2005-01-05 23:58:22 +0000
committerRussell King <rmk@flint.arm.linux.org.uk>2005-01-05 23:58:22 +0000
commit7914c5e3305c5f7e9e641fd3b6aaea88d174dae4 (patch)
tree98da95086ee8ae306fbc446083035d15b2d0ae03 /include
parentca3b0d2fc42f80daf020b5bfc3f2c39493a97fdb (diff)
[ARM] Quieten compiler warnings, etc with ARM set_pmd()
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r--include/asm-arm/pgtable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-arm/pgtable.h b/include/asm-arm/pgtable.h
index 547e5aa8be7b..10d747ba0ce0 100644
--- a/include/asm-arm/pgtable.h
+++ b/include/asm-arm/pgtable.h
@@ -310,7 +310,7 @@ PTE_BIT_FUNC(mkyoung, |= L_PTE_YOUNG);
#define set_pmd(pmdp,pmd) \
do { \
- *pmdp = pmd; \
+ *(pmdp) = pmd; \
flush_pmd_entry(pmdp); \
} while (0)