From f86a65667fa77661f026bc4a07bc8fb217a4459c Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 4 Aug 2007 09:11:40 +0000 Subject: (pci_probe) simplify --- pci.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pci.c b/pci.c index 06e1ca8..c28a846 100644 --- a/pci.c +++ b/pci.c @@ -103,9 +103,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 == 0x1119) { /* Vortex only makes RAID controllers. */ + } else if (e->vendor == 0x1119) /* Vortex only makes RAID controllers. */ e->module = strdup("gdth"); - } close(devf); } -- cgit v1.2.1