diff options
Diffstat (limited to 'i2c.c')
-rw-r--r-- | i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ guchar I2C_Read(gulong address) { int device = open(I2C_BUS, O_RDWR); - if (device == -1) return device; + if (device == -1) return 0; ioctl(device, I2C_SLAVE, address); ioctl(device, I2C_SMBUS, &argsread); |