diff options
author | Andrea Arcangeli <aarcange@redhat.com> | 2011-01-14 10:56:38 -0800 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2011-01-14 10:56:38 -0800 |
commit | 6ce1f81f51c7b22f539012e446c01e8c75d20fd9 (patch) | |
tree | e8058f3f5b665f356cab836bedb6180e2340b20b /arch/ia64 | |
parent | 52cfd503ad7176d23a5dd7af3981744feb60622f (diff) | |
download | linux-6ce1f81f51c7b22f539012e446c01e8c75d20fd9.tar.bz2 |
[IA64] fix ia64 build failure in pmdp_get_and_clear
Implement __pmd macro for ia64 too.
Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/include/asm/page.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/ia64/include/asm/page.h b/arch/ia64/include/asm/page.h index 41b6d31110fd..961a16f43e6b 100644 --- a/arch/ia64/include/asm/page.h +++ b/arch/ia64/include/asm/page.h @@ -189,6 +189,7 @@ get_order (unsigned long size) # define pgprot_val(x) ((x).pgprot) # define __pte(x) ((pte_t) { (x) } ) +# define __pmd(x) ((pmd_t) { (x) } ) # define __pgprot(x) ((pgprot_t) { (x) } ) #else /* !STRICT_MM_TYPECHECKS */ |