Add support for 970 PRO GAMING/AURA

the Aura controller is located on 0x40 of the SMBus for
this board.
This commit is contained in:
Thomas Berger 2019-04-19 16:14:20 +02:00 committed by Adam Honse
parent a2cdfc5aec
commit 73d91b9494

View file

@ -279,6 +279,13 @@ void DetectAuraControllers()
}
}
// Check for Aura controller at 0x40
if (TestForAuraController(busses[bus], 0x40))
{
new_controller = new AuraController(busses[bus], 0x40);
controllers.push_back(new_controller);
}
// Check for Aura controller at 0x4E
if (TestForAuraController(busses[bus], 0x4E))
{