From 23f2e4eda0b3d464d08f945a25a79d7e1b929b21 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 30 Mar 2005 15:03:20 +0000 Subject: oops: sata_via doesn't support for CLASS probing whereas sata_nv does --- pci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pci.c') diff --git a/pci.c b/pci.c index 37dc5ca..1ecbeeb 100644 --- a/pci.c +++ b/pci.c @@ -95,8 +95,8 @@ extern struct pciusb_entries pci_probe(void) { || e->subvendor == 0x1186 && e->subdevice == 0x1300 || e->subvendor == 0x13d1 && e->subdevice == 0xab06) e->module = strdup("8139too"); - } else if (e->vendor == 0x1106 && e->class_ == PCI_CLASS_STORAGE_IDE) { - e->module = strdup("sata_via"); + } else if (e->vendor == 0x10de && e->class_ == PCI_CLASS_STORAGE_IDE) { + e->module = strdup("sata_nv"); } else if (e->vendor == 0x10b5 && (e->device == 0x9030 || e->device == 0x9050) && e->subvendor == 0x1369) { e->module = strdup("snd-vx222"); } else if (e->vendor == 0x1119) { /* Vortex only makes RAID controllers. */ -- cgit v1.2.1