diff --git a/drivers/net/8139too.c b/drivers/net/8139too.c index 8a5b0d2..2dfccd0 100644 --- a/drivers/net/8139too.c +++ b/drivers/net/8139too.c @@ -953,8 +953,10 @@ static int __devinit rtl8139_init_one (struct pci_dev *pdev, if (pdev->vendor == PCI_VENDOR_ID_REALTEK && pdev->device == PCI_DEVICE_ID_REALTEK_8139 && - pdev->subsystem_vendor == PCI_VENDOR_ID_ATHEROS && - pdev->subsystem_device == PCI_DEVICE_ID_REALTEK_8139) { + ((pdev->subsystem_vendor == PCI_VENDOR_ID_ATHEROS && + pdev->subsystem_device == PCI_DEVICE_ID_REALTEK_8139) || + (pdev->subsystem_vendor == 0x14ff && + pdev->subsystem_device == 0xa003))) { printk(KERN_INFO "8139too: OQO Model 2 detected. Forcing PIO\n"); use_io = 1; }