diff options
author | Dmitri Vorobiev <dmitri.vorobiev@gmail.com> | 2008-04-02 03:58:35 +0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-04-28 17:14:30 +0100 |
commit | 715243e6c3e8e74202eb663a8e45880ff6a1dff7 (patch) | |
tree | eb9b5e54b6653a9468de6e1b976b31f89159f10e /arch/mips/mm | |
parent | 11327ef77f8b6104bd4a855bbe783cce84416b03 (diff) | |
download | op-kernel-dev-715243e6c3e8e74202eb663a8e45880ff6a1dff7.zip op-kernel-dev-715243e6c3e8e74202eb663a8e45880ff6a1dff7.tar.gz |
[MIPS] unexport copy_to_user_page()
The copy_to_user_page() function is called only in the core kernel
code. Therefore, there is no need to export it. This patch removes
EXPORT_SYMBOL(copy_to_user_page).
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm')
-rw-r--r-- | arch/mips/mm/init.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index 527d326..c1b1978 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c @@ -247,8 +247,6 @@ void copy_to_user_page(struct vm_area_struct *vma, flush_cache_page(vma, vaddr, page_to_pfn(page)); } -EXPORT_SYMBOL(copy_to_user_page); - void copy_from_user_page(struct vm_area_struct *vma, struct page *page, unsigned long vaddr, void *dst, const void *src, unsigned long len) |