From f4872c52bd0cdfa4e9f68bf1ab764bf5612397b5 Mon Sep 17 00:00:00 2001 From: SuNNjek Date: Wed, 15 Jul 2020 11:29:48 +0200 Subject: [PATCH] Add support for MSI RTX 2070 ARMOR --- Controllers/MSIGPUController/MSIGPUControllerDetect.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp b/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp index fc1d2ff2..f735f5b7 100644 --- a/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp +++ b/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp @@ -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() */