aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjorn Helgaas <bjorn.helgaas@hp.com>2008-12-16 23:37:15 -0500
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-01-07 14:13:15 -0500
commite55823492dde22f841ec7deeb4d61f195ecb7ed4 (patch)
tree942cd5b44bed4acb6f64d081418348d2cfd561a7
parent67eed58060ca2049fd59d35f426b6c7dbd51b20b (diff)
PCI: sh: use generic INTx swizzle from PCI core
Use the generic pci_common_swizzle() instead of arch-specific code. Note that pci_common_swizzle() loops based on dev->bus->self, not dev->bus->parent as the sh simple_swizzle() did. I think they are equivalent for this purpose. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r--arch/sh/drivers/pci/pci.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/arch/sh/drivers/pci/pci.c b/arch/sh/drivers/pci/pci.c
index aea3b6b3033a..e36c7b870861 100644
--- a/arch/sh/drivers/pci/pci.c
+++ b/arch/sh/drivers/pci/pci.c
@@ -21,21 +21,6 @@
21#include <linux/init.h> 21#include <linux/init.h>
22#include <asm/io.h> 22#include <asm/io.h>
23 23
24static u8 __init simple_swizzle(struct pci_dev *dev, u8 *pinp)
25{
26 u8 pin = *pinp;
27
28 while (dev->bus->parent) {
29 pin = pci_swizzle_interrupt_pin(dev, pin);
30 /* Move up the chain of bridges. */
31 dev = dev->bus->self;
32 }
33 *pinp = pin;
34
35 /* The slot is the slot of the last bridge. */
36 return PCI_SLOT(dev->devfn);
37}
38
39static int __init pcibios_init(void) 24static int __init pcibios_init(void)
40{ 25{
41 struct pci_channel *p; 26 struct pci_channel *p;
@@ -56,7 +41,7 @@ static int __init pcibios_init(void)
56 busno = bus->subordinate + 1; 41 busno = bus->subordinate + 1;
57 } 42 }
58 43
59 pci_fixup_irqs(simple_swizzle, pcibios_map_platform_irq); 44 pci_fixup_irqs(pci_common_swizzle, pcibios_map_platform_irq);
60 45
61 return 0; 46 return 0;
62} 47}