]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/sh/mm/pg-nommu.c
Fix nfsd truncation of readdir results
[linux-2.6-omap-h63xx.git] / arch / sh / mm / pg-nommu.c
index d15221beaa161ab555cb6b481268651d56570a4f..91ed4e695ff7cd0e9624583c777eab2215411b69 100644 (file)
 #include <linux/kernel.h>
 #include <linux/string.h>
 #include <asm/page.h>
+#include <asm/uaccess.h>
 
-void copy_page_nommu(void *to, void *from)
+void copy_page(void *to, void *from)
 {
        memcpy(to, from, PAGE_SIZE);
 }
 
-void clear_page_nommu(void *to)
+void clear_page(void *to)
 {
        memset(to, 0, PAGE_SIZE);
 }