From 00b1cfcb3bd373a00c4ef9eda0a21ee1061ded1c Mon Sep 17 00:00:00 2001 From: Arturo Casal Date: Thu, 23 Jul 2020 00:11:31 +0200 Subject: [PATCH] Added Identifiers for MSI RTX 2080 Gaming X Trio --- Controllers/MSIGPUController/MSIGPUControllerDetect.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp b/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp index 52879164..abed0cc1 100644 --- a/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp +++ b/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp @@ -74,6 +74,15 @@ bool IsMSIGPUController(i2c_smbus_interface* bus) { pass = true; } + + // MSI RTX 2080 Gaming X Trio + if (bus->pci_device == 0x1e87 && + bus->pci_vendor == 0x10de && + bus->pci_subsystem_device == 0x3726 && + bus->pci_subsystem_vendor == 0x1462) + { + pass = true; + } // MSI RTX 2060 Gaming Z 6G if (bus->pci_device == 0x1f08 &&