Add support for MSI RTX 2070 ARMOR

This commit is contained in:
SuNNjek 2020-07-15 11:29:48 +02:00 committed by Adam Honse
parent 505e2d2aa4
commit f4872c52bd

View file

@ -57,6 +57,15 @@ bool IsMSIGPUController(i2c_smbus_interface* bus)
pass = true;
}
// MSI RTX 2070 ARMOR
if (bus->pci_device == 0x1f02 &&
bus->pci_vendor == 0x10de &&
bus->pci_subsystem_device == 0x3734 &&
bus->pci_subsystem_vendor == 0x1462)
{
pass = true;
}
return(pass);
} /* IsMSIGPUController() */