From: James S. <jsi...@us...> - 2002-02-14 20:40:36
|
Update of /cvsroot/linux-mips/linux/arch/mips/mm In directory usw-pr-cvs1:/tmp/cvs-serv16553 Modified Files: ioremap.c Log Message: Change type of last_addr to phys_t. Index: ioremap.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/mm/ioremap.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ioremap.c 2 Jan 2002 18:20:18 -0000 1.3 +++ ioremap.c 14 Feb 2002 20:40:30 -0000 1.4 @@ -111,9 +111,10 @@ void * __ioremap(phys_t phys_addr, phys_t size, unsigned long flags) { - void * addr; struct vm_struct * area; - unsigned long offset, last_addr; + unsigned long offset; + phys_t last_addr; + void * addr; /* Don't allow wraparound or zero size */ last_addr = phys_addr + size - 1; |