diff options
Diffstat (limited to 'arch/mips/pci/pci-ddb5476.c')
-rw-r--r-- | arch/mips/pci/pci-ddb5476.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/mips/pci/pci-ddb5476.c b/arch/mips/pci/pci-ddb5476.c index 90dd49509800..2f44c0b783d9 100644 --- a/arch/mips/pci/pci-ddb5476.c +++ b/arch/mips/pci/pci-ddb5476.c | |||
@@ -8,17 +8,17 @@ | |||
8 | #include <asm/ddb5xxx/ddb5xxx.h> | 8 | #include <asm/ddb5xxx/ddb5xxx.h> |
9 | 9 | ||
10 | static struct resource extpci_io_resource = { | 10 | static struct resource extpci_io_resource = { |
11 | "pci IO space", | 11 | .start = 0x1000, /* leave some room for ISA bus */ |
12 | 0x1000, /* leave some room for ISA bus */ | 12 | .end = DDB_PCI_IO_SIZE - 1, |
13 | DDB_PCI_IO_SIZE - 1, | 13 | .name = "pci IO space", |
14 | IORESOURCE_IO | 14 | .flags = IORESOURCE_IO |
15 | }; | 15 | }; |
16 | 16 | ||
17 | static struct resource extpci_mem_resource = { | 17 | static struct resource extpci_mem_resource = { |
18 | "pci memory space", | 18 | .start = DDB_PCI_MEM_BASE + 0x00100000, /* leave 1 MB for RTC */ |
19 | DDB_PCI_MEM_BASE + 0x00100000, /* leave 1 MB for RTC */ | 19 | .end = DDB_PCI_MEM_BASE + DDB_PCI_MEM_SIZE - 1, |
20 | DDB_PCI_MEM_BASE + DDB_PCI_MEM_SIZE - 1, | 20 | .name = "pci memory space", |
21 | IORESOURCE_MEM | 21 | .flags = IORESOURCE_MEM |
22 | }; | 22 | }; |
23 | 23 | ||
24 | extern struct pci_ops ddb5476_ext_pci_ops; | 24 | extern struct pci_ops ddb5476_ext_pci_ops; |