|
@@ -271,9 +271,6 @@ static int octeon_read_config(struct pci_bus *bus, unsigned int devfn,
|
|
|
pci_addr.s.func = devfn & 0x7;
|
|
|
pci_addr.s.reg = reg;
|
|
|
|
|
|
-#if PCI_CONFIG_SPACE_DELAY
|
|
|
- udelay(PCI_CONFIG_SPACE_DELAY);
|
|
|
-#endif
|
|
|
switch (size) {
|
|
|
case 4:
|
|
|
*val = le32_to_cpu(cvmx_read64_uint32(pci_addr.u64));
|
|
@@ -308,9 +305,6 @@ static int octeon_write_config(struct pci_bus *bus, unsigned int devfn,
|
|
|
pci_addr.s.func = devfn & 0x7;
|
|
|
pci_addr.s.reg = reg;
|
|
|
|
|
|
-#if PCI_CONFIG_SPACE_DELAY
|
|
|
- udelay(PCI_CONFIG_SPACE_DELAY);
|
|
|
-#endif
|
|
|
switch (size) {
|
|
|
case 4:
|
|
|
cvmx_write64_uint32(pci_addr.u64, cpu_to_le32(val));
|