From: Marc Fiuczynski Date: Tue, 7 Jul 2009 03:03:37 +0000 (+0000) Subject: Both e1000 and e1000e drivers recognize certain devices. Greylisting X-Git-Tag: pypcilib-0.2-8~3 X-Git-Url: http://git.onelab.eu/?p=pypcilib.git;a=commitdiff_plain;h=bd7cbfc3f9233750f92cef2ebd9ba65bd0d788d0 Both e1000 and e1000e drivers recognize certain devices. Greylisting e1000 ensures that we use the e1000e driver. Caveat: I am not 100% sure whether one should use the e1000e driver for a device that is plugged into the PCI and not PCI-E bus. One would think that the e1000 driver is then more appropriate. --- diff --git a/pypcimap.py b/pypcimap.py index 81720b2..50bb9b1 100644 --- a/pypcimap.py +++ b/pypcimap.py @@ -37,7 +37,7 @@ import os import re # These are modules which are only returned if no other driver is available -greylist = ["ata_generic", "eepro100", "8139cp"] +greylist = ["ata_generic", "eepro100", "8139cp", "e1000"] class PCIMap: """Encapsulates modules.pcimap"""