Private
Public Access
2
0

i2c.c: add debug syslog message for i2c bus path

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2015-08-14 11:18:24 +01:00
parent 8269340c25
commit 3f51ebaaf1

View File

@@ -123,6 +123,7 @@ mraa_i2c_init_raw(unsigned int bus)
if ((dev->fh = open(filepath, O_RDWR)) < 1) {
syslog(LOG_ERR, "i2c: Failed to open requested i2c port %s", filepath);
}
syslog(LOG_DEBUG, "i2c: Opened i2c bus %s", filepath);
if (ioctl(dev->fh, I2C_FUNCS, &dev->funcs) < 0) {
syslog(LOG_CRIT, "i2c: Failed to get I2C_FUNC map from device");