patch-2.1.80 linux/include/asm-arm/page.h

Next file: linux/include/asm-arm/param.h
Previous file: linux/include/asm-arm/namei.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.1.79/linux/include/asm-arm/page.h linux/include/asm-arm/page.h
@@ -0,0 +1,20 @@
+#ifndef _ASMARM_PAGE_H
+#define _ASMARM_PAGE_H
+
+#include <asm/arch/mmu.h>
+#include <asm/proc/page.h>
+
+#ifdef __KERNEL__
+
+#define clear_page(page)	memzero((void *)(page), PAGE_SIZE)
+#define copy_page(to,from)	memcpy((void *)(to), (void *)(from), PAGE_SIZE)
+
+#endif
+
+/* unsigned long __pa(void *x) */
+#define __pa(x)			__virt_to_phys((unsigned long)(x))
+
+/* void *__va(unsigned long x) */
+#define __va(x)			((void *)(__phys_to_virt((unsigned long)(x))))
+
+#endif

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov