Add workaround for 0x48 controller on Gigabyte RGB Fusion GPUs not detecting until we have a better detection method
This commit is contained in:
parent
a414335334
commit
fd3f2c50cb
1 changed files with 6 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue