Check for "INTEL" manufacturer string, per issue comment 10#note_144867740 by @F-Lehmann
This commit is contained in:
parent
20fa1f4b1a
commit
0941f25a8d
1 changed files with 2 additions and 1 deletions
|
|
@ -87,7 +87,8 @@ void DetectI2CBusses()
|
|||
// Analysis of many Intel boards has shown that Intel SMBus adapter I/O space varies between boards
|
||||
// We can query Win32_PnPAllocatedResource entries and look up the PCI device ID to find the allocated I/O space
|
||||
// Intel SMBus adapters use the i801 driver
|
||||
else if (i["Manufacturer"].find("Intel") != std::string::npos)
|
||||
else if ((i["Manufacturer"].find("Intel") != std::string::npos)
|
||||
|| (i["Manufacturer"].find("INTEL") != std::string::npos))
|
||||
{
|
||||
std::string rgx1 = ".+" + q_res_PnPSignedDriver[0]["DeviceID"].substr(4, 33) + ".+";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue