Update of /cvsroot/linux-mips/linux/arch/mips/rc32300/79S334
In directory usw-pr-cvs1:/tmp/cvs-serv14475
Modified Files:
setup.c
Log Message:
Changed pci memory resource start/end addresses such that the RC32334
bridge base registers don't need to modified on the fly to map all of
PCI memory.
Index: setup.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/rc32300/79S334/setup.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- setup.c 2002/01/24 20:13:34 1.6
+++ setup.c 2002/02/04 21:21:42 1.7
@@ -94,7 +94,7 @@
struct resource rc32334_res_pci_mem1 = {
"PCI Mem1",
- 0x40000000,
+ 0x50000000,
0x5FFFFFFF,
IORESOURCE_MEM,
&rc32334_res_pci_mem1,
@@ -105,7 +105,7 @@
struct resource rc32334_res_pci_mem2 = {
"PCI Mem2",
0x60000000,
- 0x7FFFFFFF,
+ 0x6FFFFFFF,
IORESOURCE_MEM,
&rc32334_res_pci_mem1,
NULL,
|