diff options
author | John Crispin <blogic@openwrt.org> | 2012-04-12 11:33:07 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-05-21 09:31:48 -0400 |
commit | 3df425f316fb5c5e90236ff22b6e6616b3516af0 (patch) | |
tree | 317262c260132ed136c57a28662f0b8cbd4c4075 /include/linux/pci.h | |
parent | 6697c6933048aabe94f0049070f7ec09cd52baa8 (diff) |
OF: PCI: const usage needed by MIPS
On MIPS we want to call of_irq_map_pci from inside
arch/mips/include/asm/pci.h:extern int pcibios_map_irq(
const struct pci_dev *dev, u8 slot, u8 pin);
For this to work we need to change several functions to const usage.
Signed-off-by: John Crispin <blogic@openwrt.org>
Cc: linux-pci@vger.kernel.org
Cc: devicetree-discuss@lists.ozlabs.org
Cc: linux-mips@linux-mips.org
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Patchwork: https://patchwork.linux-mips.org/patch/3710/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index e444f5b49118..3bbc77e20a61 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -680,7 +680,7 @@ int __must_check pci_bus_add_device(struct pci_dev *dev); | |||
680 | void pci_read_bridge_bases(struct pci_bus *child); | 680 | void pci_read_bridge_bases(struct pci_bus *child); |
681 | struct resource *pci_find_parent_resource(const struct pci_dev *dev, | 681 | struct resource *pci_find_parent_resource(const struct pci_dev *dev, |
682 | struct resource *res); | 682 | struct resource *res); |
683 | u8 pci_swizzle_interrupt_pin(struct pci_dev *dev, u8 pin); | 683 | u8 pci_swizzle_interrupt_pin(const struct pci_dev *dev, u8 pin); |
684 | int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge); | 684 | int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge); |
685 | u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp); | 685 | u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp); |
686 | extern struct pci_dev *pci_dev_get(struct pci_dev *dev); | 686 | extern struct pci_dev *pci_dev_get(struct pci_dev *dev); |
@@ -1685,7 +1685,8 @@ extern void pci_release_bus_of_node(struct pci_bus *bus); | |||
1685 | /* Arch may override this (weak) */ | 1685 | /* Arch may override this (weak) */ |
1686 | extern struct device_node * __weak pcibios_get_phb_of_node(struct pci_bus *bus); | 1686 | extern struct device_node * __weak pcibios_get_phb_of_node(struct pci_bus *bus); |
1687 | 1687 | ||
1688 | static inline struct device_node *pci_device_to_OF_node(struct pci_dev *pdev) | 1688 | static inline struct device_node * |
1689 | pci_device_to_OF_node(const struct pci_dev *pdev) | ||
1689 | { | 1690 | { |
1690 | return pdev ? pdev->dev.of_node : NULL; | 1691 | return pdev ? pdev->dev.of_node : NULL; |
1691 | } | 1692 | } |