Add support for MSI 2060 Gaming X
This commit is contained in:
parent
a0b1153ec3
commit
a9dbf5ef70
1 changed files with 18 additions and 0 deletions
|
|
@ -75,6 +75,24 @@ bool IsMSIGPUController(i2c_smbus_interface* bus)
|
|||
pass = true;
|
||||
}
|
||||
|
||||
// MSI RTX 2060 Gaming Z 6G
|
||||
if (bus->pci_device == 0x1f08 &&
|
||||
bus->pci_vendor == 0x10de &&
|
||||
bus->pci_subsystem_device == 0x3754 &&
|
||||
bus->pci_subsystem_vendor == 0x1462 )
|
||||
{
|
||||
pass = true;
|
||||
}
|
||||
|
||||
// MSI RTX 2060S Gaming X
|
||||
if (bus->pci_device == 0x0300 &&
|
||||
bus->pci_vendor == 0x10de &&
|
||||
bus->pci_subsystem_device == 0x1f06 &&
|
||||
bus->pci_subsystem_vendor == 0x1462 )
|
||||
{
|
||||
pass = true;
|
||||
}
|
||||
|
||||
return(pass);
|
||||
} /* IsMSIGPUController() */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue