From: James S. <jsi...@us...> - 2002-02-12 18:14:23
|
Update of /cvsroot/linux-mips/linux/include/asm-mips64 In directory usw-pr-cvs1:/tmp/cvs-serv6295/include/asm-mips64 Modified Files: io.h types.h Log Message: More fixes for highmem at physical addresss above 4gb. Index: io.h =================================================================== RCS file: /cvsroot/linux-mips/linux/include/asm-mips64/io.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- io.h 28 Jan 2002 20:32:05 -0000 1.13 +++ io.h 12 Feb 2002 18:14:20 -0000 1.14 @@ -68,8 +68,6 @@ */ #define page_to_phys(page) PHYSADDR(page_address(page)) -typedef unsigned long phys_t; - /* * On MIPS, we have the whole physical address space mapped at all * times, so "ioremap()" and "iounmap()" do not need to do anything. Index: types.h =================================================================== RCS file: /cvsroot/linux-mips/linux/include/asm-mips64/types.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- types.h 2 Jan 2002 19:12:18 -0000 1.1 +++ types.h 12 Feb 2002 18:14:20 -0000 1.2 @@ -72,6 +72,8 @@ typedef u64 dma_addr_t; typedef u64 dma64_addr_t; +typedef unsigned long phys_t; + #endif /* __KERNEL__ */ #endif /* _ASM_TYPES_H */ |