Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40781
b: refs/heads/master
c: 4e5852f
h: refs/heads/master
i:
  40779: 8c527c7
v: v3
  • Loading branch information
Ralf Baechle committed Nov 6, 2006
1 parent 8990900 commit 12f364a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 36 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4a4cf77923eeb3cec40a302656d6ab5ced04ba48
refs/heads/master: 4e5852f31a22094a19bbc305e42651b6c92f3008
2 changes: 1 addition & 1 deletion trunk/arch/mips/pci/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ obj-$(CONFIG_DDB5477) += fixup-ddb5477.o pci-ddb5477.o ops-ddb5477.o
obj-$(CONFIG_LASAT) += pci-lasat.o
obj-$(CONFIG_MIPS_ATLAS) += fixup-atlas.o
obj-$(CONFIG_MIPS_COBALT) += fixup-cobalt.o
obj-$(CONFIG_MIPS_EV64120) += fixup-ev64120.o
obj-$(CONFIG_MIPS_EV64120) += pci-ev64120.o
obj-$(CONFIG_SOC_AU1500) += fixup-au1000.o ops-au1000.o
obj-$(CONFIG_SOC_AU1550) += fixup-au1000.o ops-au1000.o
obj-$(CONFIG_SOC_PNX8550) += fixup-pnx8550.o ops-pnx8550.o
Expand Down
34 changes: 0 additions & 34 deletions trunk/arch/mips/pci/fixup-ev64120.c

This file was deleted.

21 changes: 21 additions & 0 deletions trunk/arch/mips/pci/pci-ev64120.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#include <linux/pci.h>

int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
{
int irq;

if (!pin)
return 0;

irq = allocate_irqno();
if (irq < 0)
return 0;

return irq;
}

/* Do platform specific device initialization at pci_enable_device() time */
int pcibios_plat_dev_init(struct pci_dev *dev)
{
return 0;
}

0 comments on commit 12f364a

Please sign in to comment.