diff options
author | Michal Simek | 2010-04-22 08:07:46 +0200 |
---|---|---|
committer | Michal Simek | 2010-05-06 11:21:59 +0200 |
commit | 22dcc2e3b96107e464dbc1a5c84b5e7239906cb0 (patch) | |
tree | 0c9cc531d95ca7950c8ba2198cac1ed5dcd8e548 /arch/microblaze/include/asm/page.h | |
parent | microblaze: Remove "cache" optimized copy_page function (diff) | |
download | kernel-qcow2-linux-22dcc2e3b96107e464dbc1a5c84b5e7239906cb0.tar.gz kernel-qcow2-linux-22dcc2e3b96107e464dbc1a5c84b5e7239906cb0.tar.xz kernel-qcow2-linux-22dcc2e3b96107e464dbc1a5c84b5e7239906cb0.zip |
microblaze: page.h: Remove get_user_page and free_user_page
Remove ancient macros which are here from Linux-2.4
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/include/asm/page.h')
-rw-r--r-- | arch/microblaze/include/asm/page.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/microblaze/include/asm/page.h b/arch/microblaze/include/asm/page.h index 7b9ba8f145ea..9b12902b9818 100644 --- a/arch/microblaze/include/asm/page.h +++ b/arch/microblaze/include/asm/page.h @@ -70,11 +70,6 @@ typedef unsigned long pte_basic_t; #endif /* CONFIG_MMU */ -# ifndef CONFIG_MMU -# define get_user_page(vaddr) __get_free_page(GFP_KERNEL) -# define free_user_page(page, addr) free_page(addr) -# endif /* CONFIG_MMU */ - # define copy_page(to, from) memcpy((to), (from), PAGE_SIZE) # define clear_page(pgaddr) memset((pgaddr), 0, PAGE_SIZE) |