diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-06-21 17:20:19 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-06-21 17:20:19 +0000 |
commit | 283d10a870e3a3f2e339ed654c11b41e14bbd19d (patch) | |
tree | 14b6fbb1fe358c460e5abe3c67d75ad7d3ce1760 /target/linux/ar7-2.6 | |
parent | 38eb49746983f2f986067d73339884a52d25b16e (diff) | |
download | master-187ad058-283d10a870e3a3f2e339ed654c11b41e14bbd19d.tar.gz master-187ad058-283d10a870e3a3f2e339ed654c11b41e14bbd19d.tar.bz2 master-187ad058-283d10a870e3a3f2e339ed654c11b41e14bbd19d.zip |
Fix the IRQ assignment with vlynq/pci, thanks sw ! (#1865)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7689 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar7-2.6')
-rw-r--r-- | target/linux/ar7-2.6/files/arch/mips/ar7/vlynq-pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |