diff options
author | Vitaly Wool <vitalywool@gmail.com> | 2006-12-08 03:40:35 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-12-08 20:04:00 -0500 |
commit | f0647a52974daccbe20990fb6341f07792445fe0 (patch) | |
tree | 535e0cc2f3dc79136656eee10820fdbcc57bc841 /arch/mips/pci | |
parent | c25c79d80e02db1bd993426f979c5f1b42a0f132 (diff) |
[PATCH] add STB810 support (Philips PNX8550-based)
Signed-off-by: Vitaly Wool <vitalywool@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pci')
-rw-r--r-- | arch/mips/pci/fixup-pnx8550.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/pci/fixup-pnx8550.c b/arch/mips/pci/fixup-pnx8550.c index 4256b3b30b77..50546dab6689 100644 --- a/arch/mips/pci/fixup-pnx8550.c +++ b/arch/mips/pci/fixup-pnx8550.c | |||
@@ -33,7 +33,7 @@ | |||
33 | #define DBG(x...) | 33 | #define DBG(x...) |
34 | #endif | 34 | #endif |
35 | 35 | ||
36 | extern char irq_tab_jbs[][5]; | 36 | extern char pnx8550_irq_tab[][5]; |
37 | 37 | ||
38 | void __init pcibios_fixup_resources(struct pci_dev *dev) | 38 | void __init pcibios_fixup_resources(struct pci_dev *dev) |
39 | { | 39 | { |
@@ -47,7 +47,7 @@ void __init pcibios_fixup(void) | |||
47 | 47 | ||
48 | int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 48 | int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
49 | { | 49 | { |
50 | return irq_tab_jbs[slot][pin]; | 50 | return pnx8550_irq_tab[slot][pin]; |
51 | } | 51 | } |
52 | 52 | ||
53 | /* Do platform specific device initialization at pci_enable_device() time */ | 53 | /* Do platform specific device initialization at pci_enable_device() time */ |