Add workaround for 0x48 controller on Gigabyte RGB Fusion GPUs not detecting until we have a better detection method

This commit is contained in:
Adam Honse 2020-11-26 17:20:59 -06:00
parent a414335334
commit fd3f2c50cb

View file

@ -69,6 +69,12 @@ bool TestForGigabyteRGBFusionGPUController(i2c_smbus_interface* bus, unsigned ch
bus->i2c_smbus_read_byte(address);
bus->i2c_smbus_read_byte(address);
//We don't know what the 0x48 controller returns, so for now just assume it exists
if(address == 0x48)
{
pass = true;
}
}
return(pass);