summaryrefslogtreecommitdiff
path: root/driver/led/lp5562.c
diff options
context:
space:
mode:
Diffstat (limited to 'driver/led/lp5562.c')
-rw-r--r--driver/led/lp5562.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/driver/led/lp5562.c b/driver/led/lp5562.c
index 966aff5e58..e0758a8b91 100644
--- a/driver/led/lp5562.c
+++ b/driver/led/lp5562.c
@@ -12,16 +12,16 @@
#include "util.h"
/* I2C address */
-#define LP5562_I2C_ADDR__7bf (0x30)
+#define LP5562_I2C_ADDR_FLAGS 0x30
inline int lp5562_write(uint8_t reg, uint8_t val)
{
- return i2c_write8(I2C_PORT_MASTER, LP5562_I2C_ADDR, reg, val);
+ return i2c_write8(I2C_PORT_MASTER, LP5562_I2C_ADDR_FLAGS, reg, val);
}
inline int lp5562_read(uint8_t reg, int *val)
{
- return i2c_read8(I2C_PORT_MASTER, LP5562_I2C_ADDR, reg, val);
+ return i2c_read8(I2C_PORT_MASTER, LP5562_I2C_ADDR_FLAGS, reg, val);
}
int lp5562_set_color(uint32_t rgb)