From: James S. <jsi...@us...> - 2001-11-01 19:30:47
|
Update of /cvsroot/linux-mips/linux/arch/mips/cobalt In directory usw-pr-cvs1:/tmp/cvs-serv19652 Modified Files: setup.c Log Message: Now using real resource addresses. Index: setup.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/cobalt/setup.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- setup.c 2001/10/30 00:53:41 1.10 +++ setup.c 2001/11/01 19:30:43 1.11 @@ -145,10 +145,10 @@ * IO/MEM resources. */ mips_io_port_base = COBALT_LOCAL_IO_SPACE; - ioport_resource.start = 0; - ioport_resource.end = 0xffffffff; - iomem_resource.start = 0; - iomem_resource.end = 0xffffffff; + ioport_resource.start = 0x10000000; + ioport_resource.end = 0x11FFFFFF; + iomem_resource.start = 0x12000000; + iomem_resource.end = 0x13FFFFFF; _machine_restart = cobalt_machine_restart; _machine_halt = cobalt_machine_halt; |