We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3608caf commit ea798a7Copy full SHA for ea798a7
1 file changed
Controllers/AsusAuraGPUController/AsusAuraGPUControllerDetect.cpp
@@ -13,6 +13,7 @@
13
#include "AsusAuraGPUController.h"
14
#include "LogManager.h"
15
#include "RGBController_AsusAuraGPU.h"
16
+#include "i2c_amd_gpu.h"
17
#include "i2c_smbus.h"
18
#include "pci_ids.h"
19
@@ -28,6 +29,11 @@
28
29
30
bool TestForAsusAuraGPUController(i2c_smbus_interface* bus, unsigned char address)
31
{
32
+ if(bus->pci_vendor == AMD_GPU_VEN && !is_amd_gpu_i2c_bus(bus))
33
+ {
34
+ return false;
35
+ }
36
+
37
bool pass = false;
38
39
unsigned char aura_gpu_magic_high = bus->i2c_smbus_read_byte_data(address, 0x20); // High Byte of magic (0x15)
0 commit comments