diff options
Diffstat (limited to 'arch/arm/mach-ixp2000/pci.c')
| -rw-r--r-- | arch/arm/mach-ixp2000/pci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-ixp2000/pci.c b/arch/arm/mach-ixp2000/pci.c index 831f8ffb6b61..5ff2f2718c58 100644 --- a/arch/arm/mach-ixp2000/pci.c +++ b/arch/arm/mach-ixp2000/pci.c | |||
| @@ -37,7 +37,7 @@ static int pci_master_aborts = 0; | |||
| 37 | 37 | ||
| 38 | static int clear_master_aborts(void); | 38 | static int clear_master_aborts(void); |
| 39 | 39 | ||
| 40 | static u32 * | 40 | u32 * |
| 41 | ixp2000_pci_config_addr(unsigned int bus_nr, unsigned int devfn, int where) | 41 | ixp2000_pci_config_addr(unsigned int bus_nr, unsigned int devfn, int where) |
| 42 | { | 42 | { |
| 43 | u32 *paddress; | 43 | u32 *paddress; |
| @@ -208,15 +208,15 @@ ixp2000_pci_preinit(void) | |||
| 208 | * use our own resource space. | 208 | * use our own resource space. |
| 209 | */ | 209 | */ |
| 210 | static struct resource ixp2000_pci_mem_space = { | 210 | static struct resource ixp2000_pci_mem_space = { |
| 211 | .start = 0x00000000, | 211 | .start = 0xe0000000, |
| 212 | .end = 0xffffffff, | 212 | .end = 0xffffffff, |
| 213 | .flags = IORESOURCE_MEM, | 213 | .flags = IORESOURCE_MEM, |
| 214 | .name = "PCI Mem Space" | 214 | .name = "PCI Mem Space" |
| 215 | }; | 215 | }; |
| 216 | 216 | ||
| 217 | static struct resource ixp2000_pci_io_space = { | 217 | static struct resource ixp2000_pci_io_space = { |
| 218 | .start = 0x00000000, | 218 | .start = 0x00010000, |
| 219 | .end = 0xffffffff, | 219 | .end = 0x0001ffff, |
| 220 | .flags = IORESOURCE_IO, | 220 | .flags = IORESOURCE_IO, |
| 221 | .name = "PCI I/O Space" | 221 | .name = "PCI I/O Space" |
| 222 | }; | 222 | }; |
