diff options
| author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2002-10-31 19:37:31 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-10-31 19:37:31 -0800 |
| commit | 2f977015317245fbfd11258610dcf4f48869040b (patch) | |
| tree | 07cde1ca285a89c9f3fc3aff3cd2f0c9ba68c339 | |
| parent | eb56b153348a81ee6815992215bed4a9c365ffde (diff) | |
[PATCH] Alpha escaped pcibios...
| -rw-r--r-- | arch/alpha/kernel/sys_titan.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/alpha/kernel/sys_titan.c b/arch/alpha/kernel/sys_titan.c index b7d03baa0ed5..fec4505fcc95 100644 --- a/arch/alpha/kernel/sys_titan.c +++ b/arch/alpha/kernel/sys_titan.c @@ -306,10 +306,7 @@ privateer_map_irq(struct pci_dev *dev, u8 slot, u8 pin) { u8 irq; - pcibios_read_config_byte(dev->bus->number, - dev->devfn, - PCI_INTERRUPT_LINE, - &irq); + pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq); /* is it routed through ISA? */ if ((irq & 0xF0) == 0xE0) |
