Create a detection list for MSI GPU controller with card names

This commit is contained in:
Adam Honse 2020-07-22 22:30:55 -05:00
parent 00b1cfcb3b
commit baca85b8cd
4 changed files with 71 additions and 103 deletions

View file

@ -12,8 +12,6 @@ MSIGPUController::MSIGPUController(i2c_smbus_interface* bus)
{
this->bus = bus;
this->dev = 0x68;
strcpy(device_name, "MSI RTX GPU");
}
MSIGPUController::~MSIGPUController()
@ -21,11 +19,6 @@ MSIGPUController::~MSIGPUController()
}
std::string MSIGPUController::GetDeviceName()
{
return(device_name);
}
std::string MSIGPUController::GetDeviceLocation()
{
std::string return_string(bus->device_name);