Update of /cvsroot/linux-mips/linux/arch/mips64/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv30225/arch/mips64/kernel
Modified Files:
setup.c
Log Message:
- consolidate all architectures to use type phys_addr_t for physical
addresses. MIPS-only phys_t is gone, replaced with phys_addr_t.
- remap_page_range() will "fixup" physaddr's for platforms with 64-bit
physaddr support enabled, just as __ioremap() does.
Index: setup.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips64/kernel/setup.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- setup.c 30 May 2002 20:42:10 -0000 1.12
+++ setup.c 17 Sep 2002 18:20:01 -0000 1.13
@@ -499,7 +499,7 @@
start_kernel();
}
-void __init add_memory_region(phys_t start, phys_t size,
+void __init add_memory_region(phys_addr_t start, phys_addr_t size,
long type)
{
int x = boot_mem_map.nr_map;
|