diff options
-rw-r--r-- | include/asm-x86/page.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86/page.h b/include/asm-x86/page.h index 1cb7c51..a05b289 100644 --- a/include/asm-x86/page.h +++ b/include/asm-x86/page.h @@ -52,13 +52,13 @@ extern int page_is_ram(unsigned long pagenr); struct page; -static void inline clear_user_page(void *page, unsigned long vaddr, +static inline void clear_user_page(void *page, unsigned long vaddr, struct page *pg) { clear_page(page); } -static void inline copy_user_page(void *to, void *from, unsigned long vaddr, +static inline void copy_user_page(void *to, void *from, unsigned long vaddr, struct page *topage) { copy_page(to, from); |