diff options
Diffstat (limited to 'arch/mips/pci/pci-ev64120.c')
-rw-r--r-- | arch/mips/pci/pci-ev64120.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/arch/mips/pci/pci-ev64120.c b/arch/mips/pci/pci-ev64120.c deleted file mode 100644 index a84f594b5a18..000000000000 --- a/arch/mips/pci/pci-ev64120.c +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | #include <linux/pci.h> | ||
2 | #include <asm/irq.h> | ||
3 | |||
4 | int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | ||
5 | { | ||
6 | int irq; | ||
7 | |||
8 | if (!pin) | ||
9 | return 0; | ||
10 | |||
11 | irq = allocate_irqno(); | ||
12 | if (irq < 0) | ||
13 | return 0; | ||
14 | |||
15 | return irq; | ||
16 | } | ||
17 | |||
18 | /* Do platform specific device initialization at pci_enable_device() time */ | ||
19 | int pcibios_plat_dev_init(struct pci_dev *dev) | ||
20 | { | ||
21 | return 0; | ||
22 | } | ||