1 Index: linux-2.6.25.4/arch/mips/au1000/common/pci.c
2 ===================================================================
3 --- linux-2.6.25.4.orig/arch/mips/au1000/common/pci.c
4 +++ linux-2.6.25.4/arch/mips/au1000/common/pci.c
8 static struct resource pci_io_resource = {
9 - .start = PCI_IO_START,
11 + .start = (resource_size_t)PCI_IO_START,
12 + .end = (resource_size_t)PCI_IO_END,
13 .name = "PCI IO space",
14 .flags = IORESOURCE_IO
17 static struct resource pci_mem_resource = {
18 - .start = PCI_MEM_START,
20 + .start = (resource_size_t)PCI_MEM_START,
21 + .end = (resource_size_t)PCI_MEM_END,
22 .name = "PCI memory space",
23 .flags = IORESOURCE_MEM