1 --- a/arch/mips/au1000/common/pci.c
2 +++ b/arch/mips/au1000/common/pci.c
6 static struct resource pci_io_resource = {
7 - .start = PCI_IO_START,
9 + .start = (resource_size_t)PCI_IO_START,
10 + .end = (resource_size_t)PCI_IO_END,
11 .name = "PCI IO space",
12 .flags = IORESOURCE_IO
15 static struct resource pci_mem_resource = {
16 - .start = PCI_MEM_START,
18 + .start = (resource_size_t)PCI_MEM_START,
19 + .end = (resource_size_t)PCI_MEM_END,
20 .name = "PCI memory space",
21 .flags = IORESOURCE_MEM