Просмотр исходного кода

Fix the IRQ assignment with vlynq/pci, thanks sw ! (#1865)

SVN-Revision: 7689
Florian Fainelli 18 лет назад
Родитель
Сommit
02619c31b5
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      target/linux/ar7-2.6/files/arch/mips/ar7/vlynq-pci.c

+ 3 - 1
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);