From 02ae123accbdb01614e0f811d717b20ff1de531c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Wed, 20 Sep 2017 13:17:36 +0200 Subject: [PATCH] Rename IS_IS31FL3731_I2C_ADDRESS macro to IS_I2C_ADDRESS_IS31FL3731 --- shared/i2c_addresses.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/i2c_addresses.h b/shared/i2c_addresses.h index 50fea10..7cec5af 100644 --- a/shared/i2c_addresses.h +++ b/shared/i2c_addresses.h @@ -50,7 +50,7 @@ // The EEPROM is featured separately as it's not connected to the main I2C bus. #define I2C_ADDRESS_EEPROM 0x50 - #define IS_IS31FL3731_I2C_ADDRESS(address) \ + #define IS_I2C_ADDRESS_IS31FL3731(address) \ (I2C_ADDRESS_IS31FL3731_LEFT <= (address) && (address) <= I2C_ADDRESS_IS31FL3731_RIGHT) #endif