From 02619c31b588a2616e0cffdb760cf352dac6cd8b Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Thu, 21 Jun 2007 17:20:19 +0000 Subject: [PATCH] Fix the IRQ assignment with vlynq/pci, thanks sw ! (#1865) SVN-Revision: 7689 --- target/linux/ar7-2.6/files/arch/mips/ar7/vlynq-pci.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/target/linux/ar7-2.6/files/arch/mips/ar7/vlynq-pci.c b/target/linux/ar7-2.6/files/arch/mips/ar7/vlynq-pci.c index a32ea8d44c..eb11a3b002 100644 --- a/target/linux/ar7-2.6/files/arch/mips/ar7/vlynq-pci.c +++ b/target/linux/ar7-2.6/files/arch/mips/ar7/vlynq-pci.c @@ -178,9 +178,11 @@ static int vlynq_config_read(struct pci_bus *bus, unsigned int devfn, int where, case PCI_INTERRUPT_LINE: case PCI_CARDBUS_CIS: case PCI_CAPABILITY_LIST: - case PCI_INTERRUPT_PIN: *val = 0; break; + case PCI_INTERRUPT_PIN: + *val = 1; + break; default: printk("%s: Read of unknown register 0x%x (size %d)\n", dev->dev.bus_id, where, size); -- 2.30.2