Add I2C: label to location string for I2C devices

This commit is contained in:
Adam Honse 2020-10-20 23:42:20 -05:00
parent 5672f556e9
commit 9fcc8dd573
17 changed files with 22 additions and 19 deletions

View file

@ -27,7 +27,7 @@ std::string SapphireGPUController::GetDeviceLocation()
snprintf(addr, 5, "0x%02X", dev);
return_string.append(", address ");
return_string.append(addr);
return(return_string);
return("I2C: " + return_string);
}
unsigned char SapphireGPUController::GetRed()