|
@@ -634,6 +634,9 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_4, quirk_vi
|
|
|
* non-x86 architectures (yes Via exists on PPC among other places),
|
|
|
* we must mask the PCI_INTERRUPT_LINE value versus 0xf to get
|
|
|
* interrupts delivered properly.
|
|
|
+ *
|
|
|
+ * Some of the on-chip devices are actually '586 devices' so they are
|
|
|
+ * listed here.
|
|
|
*/
|
|
|
static void quirk_via_irq(struct pci_dev *dev)
|
|
|
{
|
|
@@ -648,6 +651,10 @@ static void quirk_via_irq(struct pci_dev *dev)
|
|
|
pci_write_config_byte(dev, PCI_INTERRUPT_LINE, new_irq);
|
|
|
}
|
|
|
}
|
|
|
+DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_0, quirk_via_irq);
|
|
|
+DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_1, quirk_via_irq);
|
|
|
+DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_2, quirk_via_irq);
|
|
|
+DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_3, quirk_via_irq);
|
|
|
DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686, quirk_via_irq);
|
|
|
DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_4, quirk_via_irq);
|
|
|
DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_5, quirk_via_irq);
|