diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2008-07-11 10:27:54 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-15 13:44:35 -0400 |
commit | edcaf1a6a77315562e9781245cc8e028c9a921dc (patch) | |
tree | a20a0a85071fa283c36db87a41d1a7e091a35781 /arch/mips/pci/fixup-rbtx4927.c | |
parent | 766891565bdaf605ea4aebe3e75de77e848254d0 (diff) |
[MIPS] TXx9: Make single kernel can support multiple boards
Make single kernel can be used on RBTX4927/37/38. Also make
some SoC-specific code independent from board-specific code.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pci/fixup-rbtx4927.c')
-rw-r--r-- | arch/mips/pci/fixup-rbtx4927.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/mips/pci/fixup-rbtx4927.c b/arch/mips/pci/fixup-rbtx4927.c index abab4852d158..321db265829c 100644 --- a/arch/mips/pci/fixup-rbtx4927.c +++ b/arch/mips/pci/fixup-rbtx4927.c | |||
@@ -36,7 +36,7 @@ | |||
36 | #include <asm/txx9/pci.h> | 36 | #include <asm/txx9/pci.h> |
37 | #include <asm/txx9/rbtx4927.h> | 37 | #include <asm/txx9/rbtx4927.h> |
38 | 38 | ||
39 | int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | 39 | int __init rbtx4927_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
40 | { | 40 | { |
41 | unsigned char irq = pin; | 41 | unsigned char irq = pin; |
42 | 42 | ||
@@ -71,9 +71,3 @@ int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | |||
71 | } | 71 | } |
72 | return irq; | 72 | return irq; |
73 | } | 73 | } |
74 | |||
75 | /* Do platform specific device initialization at pci_enable_device() time */ | ||
76 | int pcibios_plat_dev_init(struct pci_dev *dev) | ||
77 | { | ||
78 | return 0; | ||
79 | } | ||