From 5b17833c6e05aec054e8ecbe43448ed25ee1e427 Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Sat, 25 Jan 2020 17:22:36 -0600 Subject: [PATCH] Remove some detection checks for Corsair Vengeance RGB Pro detection as it was no longer detecting my modules with them --- .../CorsairProControllerDetect.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Controllers/CorsairProController/CorsairProControllerDetect.cpp b/Controllers/CorsairProController/CorsairProControllerDetect.cpp index 28b4f6840..74d1e490e 100644 --- a/Controllers/CorsairProController/CorsairProControllerDetect.cpp +++ b/Controllers/CorsairProController/CorsairProControllerDetect.cpp @@ -35,20 +35,6 @@ bool TestForCorsairProController(i2c_smbus_interface* bus, unsigned char address { pass = true; - res = bus->i2c_smbus_read_byte_data(address, 0x24); - - if (res != 0x02) - { - pass = false; - } - - res = bus->i2c_smbus_read_byte_data(address, 0x25); - - if (res != 0x02) - { - pass = false; - } - res = bus->i2c_smbus_read_byte_data(address, 0x43); if (res != 0x1C)