diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2015-02-02 15:49:29 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2015-02-02 15:49:29 -0500 |
commit | 2cd59deaefbc5fb88e6e232664377a02ca3122ed (patch) | |
tree | df886f88d157af744e9d2781628ad3318a05abcf /arch/mips/pci | |
parent | 341f3a2bcfa25462b55ec72939fd21692fa0d7c9 (diff) | |
parent | 029e2151fc4a5760b4ab963d7613f8603084232a (diff) |
Merge branch 'pci/config' into next
* pci/config:
PCI: xilinx: Convert to use generic config accessors
PCI: xgene: Convert to use generic config accessors
PCI: tegra: Convert to use generic config accessors
PCI: rcar: Convert to use generic config accessors
PCI: generic: Convert to use generic config accessors
powerpc/powermac: Convert PCI to use generic config accessors
powerpc/fsl_pci: Convert PCI to use generic config accessors
ARM: ks8695: Convert PCI to use generic config accessors
ARM: sa1100: Convert PCI to use generic config accessors
ARM: integrator: Convert PCI to use generic config accessors
ARM: cns3xxx: Convert PCI to use generic config accessors
PCI: Add generic config accessors
powerpc/PCI: Add struct pci_ops member names to initialization
mn10300/PCI: Add struct pci_ops member names to initialization
MIPS: PCI: Add struct pci_ops member names to initialization
frv/PCI: Add struct pci_ops member names to initialization
Diffstat (limited to 'arch/mips/pci')
-rw-r--r-- | arch/mips/pci/pci-bcm1480.c | 4 | ||||
-rw-r--r-- | arch/mips/pci/pci-octeon.c | 4 | ||||
-rw-r--r-- | arch/mips/pci/pcie-octeon.c | 12 |
3 files changed, 10 insertions, 10 deletions
diff --git a/arch/mips/pci/pci-bcm1480.c b/arch/mips/pci/pci-bcm1480.c index 5ec2a7bae02c..f2355e3e65a1 100644 --- a/arch/mips/pci/pci-bcm1480.c +++ b/arch/mips/pci/pci-bcm1480.c | |||
@@ -173,8 +173,8 @@ static int bcm1480_pcibios_write(struct pci_bus *bus, unsigned int devfn, | |||
173 | } | 173 | } |
174 | 174 | ||
175 | struct pci_ops bcm1480_pci_ops = { | 175 | struct pci_ops bcm1480_pci_ops = { |
176 | bcm1480_pcibios_read, | 176 | .read = bcm1480_pcibios_read, |
177 | bcm1480_pcibios_write, | 177 | .write = bcm1480_pcibios_write, |
178 | }; | 178 | }; |
179 | 179 | ||
180 | static struct resource bcm1480_mem_resource = { | 180 | static struct resource bcm1480_mem_resource = { |
diff --git a/arch/mips/pci/pci-octeon.c b/arch/mips/pci/pci-octeon.c index d07e04121cc6..bedb72bd3a27 100644 --- a/arch/mips/pci/pci-octeon.c +++ b/arch/mips/pci/pci-octeon.c | |||
@@ -327,8 +327,8 @@ static int octeon_write_config(struct pci_bus *bus, unsigned int devfn, | |||
327 | 327 | ||
328 | 328 | ||
329 | static struct pci_ops octeon_pci_ops = { | 329 | static struct pci_ops octeon_pci_ops = { |
330 | octeon_read_config, | 330 | .read = octeon_read_config, |
331 | octeon_write_config, | 331 | .write = octeon_write_config, |
332 | }; | 332 | }; |
333 | 333 | ||
334 | static struct resource octeon_pci_mem_resource = { | 334 | static struct resource octeon_pci_mem_resource = { |
diff --git a/arch/mips/pci/pcie-octeon.c b/arch/mips/pci/pcie-octeon.c index 5e36c33e5543..eb4a17ba4a53 100644 --- a/arch/mips/pci/pcie-octeon.c +++ b/arch/mips/pci/pcie-octeon.c | |||
@@ -1792,8 +1792,8 @@ static int octeon_dummy_write_config(struct pci_bus *bus, unsigned int devfn, | |||
1792 | } | 1792 | } |
1793 | 1793 | ||
1794 | static struct pci_ops octeon_pcie0_ops = { | 1794 | static struct pci_ops octeon_pcie0_ops = { |
1795 | octeon_pcie0_read_config, | 1795 | .read = octeon_pcie0_read_config, |
1796 | octeon_pcie0_write_config, | 1796 | .write = octeon_pcie0_write_config, |
1797 | }; | 1797 | }; |
1798 | 1798 | ||
1799 | static struct resource octeon_pcie0_mem_resource = { | 1799 | static struct resource octeon_pcie0_mem_resource = { |
@@ -1813,8 +1813,8 @@ static struct pci_controller octeon_pcie0_controller = { | |||
1813 | }; | 1813 | }; |
1814 | 1814 | ||
1815 | static struct pci_ops octeon_pcie1_ops = { | 1815 | static struct pci_ops octeon_pcie1_ops = { |
1816 | octeon_pcie1_read_config, | 1816 | .read = octeon_pcie1_read_config, |
1817 | octeon_pcie1_write_config, | 1817 | .write = octeon_pcie1_write_config, |
1818 | }; | 1818 | }; |
1819 | 1819 | ||
1820 | static struct resource octeon_pcie1_mem_resource = { | 1820 | static struct resource octeon_pcie1_mem_resource = { |
@@ -1834,8 +1834,8 @@ static struct pci_controller octeon_pcie1_controller = { | |||
1834 | }; | 1834 | }; |
1835 | 1835 | ||
1836 | static struct pci_ops octeon_dummy_ops = { | 1836 | static struct pci_ops octeon_dummy_ops = { |
1837 | octeon_dummy_read_config, | 1837 | .read = octeon_dummy_read_config, |
1838 | octeon_dummy_write_config, | 1838 | .write = octeon_dummy_write_config, |
1839 | }; | 1839 | }; |
1840 | 1840 | ||
1841 | static struct resource octeon_dummy_mem_resource = { | 1841 | static struct resource octeon_dummy_mem_resource = { |