diff options
| author | Tony Luck <tony.luck@intel.com> | 2005-05-17 18:53:14 -0400 |
|---|---|---|
| committer | Tony Luck <tony.luck@intel.com> | 2005-05-17 18:53:14 -0400 |
| commit | 325a479c4c110db278ef3361460a48c4093252cc (patch) | |
| tree | bcfbf4d0647d9442045639a5c19da59d55190e81 /arch/arm/mach-ixp2000/pci.c | |
| parent | ebcc80c1b6629a445f7471cc1ddb48faf8a84e70 (diff) | |
| parent | 7f9eaedf894dbaa08c157832e9a6c9c03ffed1ed (diff) | |
Merge with temp tree to get David's gdb inferior calls patch
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 | }; |
