summaryrefslogtreecommitdiffstats
path: root/include/asm-alpha/page.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-alpha/page.h')
-rw-r--r--include/asm-alpha/page.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-alpha/page.h b/include/asm-alpha/page.h
index d1dde606e..62a72144f 100644
--- a/include/asm-alpha/page.h
+++ b/include/asm-alpha/page.h
@@ -38,6 +38,8 @@ static inline void clear_page(void * page)
} while (count);
}
+#define clear_user_page(page, vaddr) clear_page(page)
+
static inline void copy_page(void * _to, void * _from)
{
unsigned long count = PAGE_SIZE/64;
@@ -68,6 +70,8 @@ static inline void copy_page(void * _to, void * _from)
} while (count);
}
+#define copy_user_page(to, from, vaddr) copy_page(to, from)
+
#ifdef STRICT_MM_TYPECHECKS
/*
* These are used to make use of C type-checking..