From 0ee04c497b43a9a2fa3cb28710e16166cc1e69b5 Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Sat, 11 Apr 2026 01:29:05 -0500 Subject: [PATCH] Revert "Change test in ENE SMBus controller to fix a conflict where it locks up Corsair DDR5 Light Enhancement Kit sticks" This reverts commit c4e0164479c154d0c3fa12afe0a97bdff9fbd070. --- .../ENESMBusController/ENESMBusControllerDetect.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Controllers/ENESMBusController/ENESMBusControllerDetect.cpp b/Controllers/ENESMBusController/ENESMBusControllerDetect.cpp index 203ccdac7..0344539d7 100644 --- a/Controllers/ENESMBusController/ENESMBusControllerDetect.cpp +++ b/Controllers/ENESMBusController/ENESMBusControllerDetect.cpp @@ -127,7 +127,12 @@ bool TestForENESMBusController(i2c_smbus_interface* bus, unsigned char address) LOG_DEBUG("[ENE SMBus] looking for devices at 0x%02X...", address); - int res = bus->i2c_smbus_read_byte_data(address, 0x00); + int res = bus->i2c_smbus_read_byte(address); + + if(res < 0) + { + res = bus->i2c_smbus_read_byte_data(address, 0x00); + } if(res >= 0) {