summaryrefslogtreecommitdiff
path: root/i2c_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'i2c_helper.h')
-rw-r--r--i2c_helper.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/i2c_helper.h b/i2c_helper.h
index cab2ce6f..709a748d 100644
--- a/i2c_helper.h
+++ b/i2c_helper.h
@@ -80,6 +80,15 @@ int i2c_open(int bus, uint16_t addr, int force);
int i2c_open_path(const char *path, uint16_t addr, int force);
/**
+ * i2c_open_from_programmer_params: open an I2C device from programmer params
+ *
+ * This function is a wrapper for i2c_open and i2c_open_path that obtains the
+ * I2C device to use from programmer parameters. It is meant to be called
+ * from I2C-based programmers to avoid repeating parameter parsing code.
+ */
+int i2c_open_from_programmer_params(uint16_t addr, int force);
+
+/**
* i2c_close - closes the file descriptor returned by i2c_open
*
* @fd: file descriptor to be closed.