diff options
author | Dmitri Vorobiev <dmitri.vorobiev@gmail.com> | 2008-04-01 19:58:35 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-04-28 12:14:30 -0400 |
commit | 715243e6c3e8e74202eb663a8e45880ff6a1dff7 (patch) | |
tree | eb9b5e54b6653a9468de6e1b976b31f89159f10e /arch | |
parent | 11327ef77f8b6104bd4a855bbe783cce84416b03 (diff) |
[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')
-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 527d326bfa15..c1b197815283 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, | |||
247 | flush_cache_page(vma, vaddr, page_to_pfn(page)); | 247 | flush_cache_page(vma, vaddr, page_to_pfn(page)); |
248 | } | 248 | } |
249 | 249 | ||
250 | EXPORT_SYMBOL(copy_to_user_page); | ||
251 | |||
252 | void copy_from_user_page(struct vm_area_struct *vma, | 250 | void copy_from_user_page(struct vm_area_struct *vma, |
253 | struct page *page, unsigned long vaddr, void *dst, const void *src, | 251 | struct page *page, unsigned long vaddr, void *dst, const void *src, |
254 | unsigned long len) | 252 | unsigned long len) |