diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-10-09 03:02:35 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-10-09 03:02:35 -0400 |
commit | 1236d6bb6e19fc72ffc6bbcdeb1bfefe450e54ee (patch) | |
tree | 47da3feee8e263e8c9352c85cf518e624be3c211 /arch/mips/pci/pci-octeon.c | |
parent | 750b1a6894ecc9b178c6e3d0a1170122971b2036 (diff) | |
parent | 8a5776a5f49812d29fe4b2d0a2d71675c3facf3f (diff) |
Merge 4.14-rc4 into staging-next
We want the staging/iio fixes in here as well to handle merge issues.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/mips/pci/pci-octeon.c')
-rw-r--r-- | arch/mips/pci/pci-octeon.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/mips/pci/pci-octeon.c b/arch/mips/pci/pci-octeon.c index 9ee01936862e..3e92a06fa772 100644 --- a/arch/mips/pci/pci-octeon.c +++ b/arch/mips/pci/pci-octeon.c | |||
@@ -59,8 +59,7 @@ union octeon_pci_address { | |||
59 | } s; | 59 | } s; |
60 | }; | 60 | }; |
61 | 61 | ||
62 | int __initconst (*octeon_pcibios_map_irq)(const struct pci_dev *dev, | 62 | int (*octeon_pcibios_map_irq)(const struct pci_dev *dev, u8 slot, u8 pin); |
63 | u8 slot, u8 pin); | ||
64 | enum octeon_dma_bar_type octeon_dma_bar_type = OCTEON_DMA_BAR_TYPE_INVALID; | 63 | enum octeon_dma_bar_type octeon_dma_bar_type = OCTEON_DMA_BAR_TYPE_INVALID; |
65 | 64 | ||
66 | /** | 65 | /** |
@@ -74,7 +73,7 @@ enum octeon_dma_bar_type octeon_dma_bar_type = OCTEON_DMA_BAR_TYPE_INVALID; | |||
74 | * as it goes through each bridge. | 73 | * as it goes through each bridge. |
75 | * Returns Interrupt number for the device | 74 | * Returns Interrupt number for the device |
76 | */ | 75 | */ |
77 | int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | 76 | int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
78 | { | 77 | { |
79 | if (octeon_pcibios_map_irq) | 78 | if (octeon_pcibios_map_irq) |
80 | return octeon_pcibios_map_irq(dev, slot, pin); | 79 | return octeon_pcibios_map_irq(dev, slot, pin); |