From a0b1153ec3a124924f87b9bff66f87e4826e4d37 Mon Sep 17 00:00:00 2001 From: Jeff Geer Date: Tue, 21 Jul 2020 20:45:45 -0500 Subject: [PATCH] Added Identifiers for MSI RTX 2080 Ti 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 f735f5b78..cac7014cf 100644 --- a/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp +++ b/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp @@ -66,6 +66,15 @@ bool IsMSIGPUController(i2c_smbus_interface* bus) pass = true; } + // MSI RTX 2080 Ti Gaming X Trio + if (bus->pci_device == 0x1e07 && + bus->pci_vendor == 0x10de && + bus->pci_subsystem_device == 0x3715 && + bus->pci_subsystem_vendor == 0x1462) + { + pass = true; + } + return(pass); } /* IsMSIGPUController() */