diff options
Diffstat (limited to 'arch/mips/pci/fixup-rbtx4938.c')
-rw-r--r-- | arch/mips/pci/fixup-rbtx4938.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/arch/mips/pci/fixup-rbtx4938.c b/arch/mips/pci/fixup-rbtx4938.c index 39c995830384..a80579af609b 100644 --- a/arch/mips/pci/fixup-rbtx4938.c +++ b/arch/mips/pci/fixup-rbtx4938.c | |||
@@ -13,7 +13,7 @@ | |||
13 | #include <asm/txx9/pci.h> | 13 | #include <asm/txx9/pci.h> |
14 | #include <asm/txx9/rbtx4938.h> | 14 | #include <asm/txx9/rbtx4938.h> |
15 | 15 | ||
16 | int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | 16 | int __init rbtx4938_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
17 | { | 17 | { |
18 | int irq = tx4938_pcic1_map_irq(dev, slot); | 18 | int irq = tx4938_pcic1_map_irq(dev, slot); |
19 | 19 | ||
@@ -51,12 +51,3 @@ int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | |||
51 | } | 51 | } |
52 | return irq; | 52 | return irq; |
53 | } | 53 | } |
54 | |||
55 | /* | ||
56 | * Do platform specific device initialization at pci_enable_device() time | ||
57 | */ | ||
58 | int pcibios_plat_dev_init(struct pci_dev *dev) | ||
59 | { | ||
60 | return 0; | ||
61 | } | ||
62 | |||