aboutsummaryrefslogtreecommitdiff
path: root/miscutils/i2c_tools.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/i2c_tools.c')
-rw-r--r--miscutils/i2c_tools.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/miscutils/i2c_tools.c b/miscutils/i2c_tools.c
index 57cac5d47..cda17ee00 100644
--- a/miscutils/i2c_tools.c
+++ b/miscutils/i2c_tools.c
@@ -273,7 +273,7 @@ static int i2c_bus_lookup(const char *bus_str)
273 return xstrtou_range(bus_str, 10, 0, 0xfffff); 273 return xstrtou_range(bus_str, 10, 0, 0xfffff);
274} 274}
275 275
276#if ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP || ENABLE_I2CTRANSFER 276#if ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP
277static int i2c_parse_bus_addr(const char *addr_str) 277static int i2c_parse_bus_addr(const char *addr_str)
278{ 278{
279 /* Slave address must be in range 0x03 - 0x77. */ 279 /* Slave address must be in range 0x03 - 0x77. */
@@ -286,14 +286,16 @@ static void i2c_set_pec(int fd, int pec)
286 itoptr(pec ? 1 : 0), 286 itoptr(pec ? 1 : 0),
287 "can't set PEC"); 287 "can't set PEC");
288} 288}
289#endif
289 290
291#if ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP || ENABLE_I2CTRANSFER
290static void i2c_set_slave_addr(int fd, int addr, int force) 292static void i2c_set_slave_addr(int fd, int addr, int force)
291{ 293{
292 ioctl_or_perror_and_die(fd, force ? I2C_SLAVE_FORCE : I2C_SLAVE, 294 ioctl_or_perror_and_die(fd, force ? I2C_SLAVE_FORCE : I2C_SLAVE,
293 itoptr(addr), 295 itoptr(addr),
294 "can't set address to 0x%02x", addr); 296 "can't set address to 0x%02x", addr);
295} 297}
296#endif /* ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP */ 298#endif
297 299
298#if ENABLE_I2CGET || ENABLE_I2CSET 300#if ENABLE_I2CGET || ENABLE_I2CSET
299static int i2c_parse_data_addr(const char *data_addr) 301static int i2c_parse_data_addr(const char *data_addr)