Commit 66e42619 authored by Linus Torvalds's avatar Linus Torvalds

Merge bk://bk.arm.linux.org.uk/linux-2.6-rmk

into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents 28ad2df3 64057cbb
/* /*
* linux/arch/arm/kernel/debug-armv.S * linux/arch/arm/kernel/debug.S
* *
* Copyright (C) 1994-1999 Russell King * Copyright (C) 1994-1999 Russell King
* *
......
...@@ -124,20 +124,28 @@ static int __init enp2611_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) ...@@ -124,20 +124,28 @@ static int __init enp2611_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
{ {
int irq; int irq;
if (dev->bus->number == 0x00 && PCI_SLOT(dev->devfn) == 0x01) { if (dev->bus->number == 0 && PCI_SLOT(dev->devfn) == 0) {
/* IXP2400. */
irq = IRQ_IXP2000_PCIA;
} else if (dev->bus->number == 0 && PCI_SLOT(dev->devfn) == 1) {
/* 21555 non-transparent bridge. */ /* 21555 non-transparent bridge. */
irq = IRQ_IXP2000_PCIB; irq = IRQ_IXP2000_PCIB;
} else if (dev->bus->number == 0x01 && PCI_SLOT(dev->devfn) == 0x00) { } else if (dev->bus->number == 0 && PCI_SLOT(dev->devfn) == 4) {
/* PCI2050B transparent bridge. */
irq = -1;
} else if (dev->bus->number == 1 && PCI_SLOT(dev->devfn) == 0) {
/* 82559 ethernet. */ /* 82559 ethernet. */
irq = IRQ_IXP2000_PCIA; irq = IRQ_IXP2000_PCIA;
} else if (dev->bus->number == 1 && PCI_SLOT(dev->devfn) == 1) {
/* SPI-3 option board. */
irq = IRQ_IXP2000_PCIB;
} else { } else {
printk(KERN_INFO "enp2611_pci_map_irq for unknown device\n"); printk(KERN_ERR "enp2611_pci_map_irq() called for unknown "
irq = IRQ_IXP2000_PCI; "device PCI:%d:%d:%d\n", dev->bus->number,
PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
irq = -1;
} }
printk(KERN_INFO "Assigned IRQ %d to PCI:%d:%d:%d\n", irq,
dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
return irq; return irq;
} }
...@@ -151,7 +159,9 @@ struct hw_pci enp2611_pci __initdata = { ...@@ -151,7 +159,9 @@ struct hw_pci enp2611_pci __initdata = {
int __init enp2611_pci_init(void) int __init enp2611_pci_init(void)
{ {
if (machine_is_enp2611())
pci_common_init(&enp2611_pci); pci_common_init(&enp2611_pci);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment