Private
Public Access
2
0

gpio: fix identation

Signed-off-by: Bernd Barsuhn <bernd.barsuhn@me.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Bernd Barsuhn
2014-11-04 10:13:37 +00:00
committed by Brendan Le Foll
parent 2a851d7cc7
commit 428c99f940

View File

@@ -107,7 +107,7 @@ mraa_gpio_init_raw(int pin)
int export = open(SYSFS_CLASS_GPIO "/export", O_WRONLY); int export = open(SYSFS_CLASS_GPIO "/export", O_WRONLY);
if (export == -1) { if (export == -1) {
syslog(LOG_ERR, "gpio: Failed to open export for writing"); syslog(LOG_ERR, "gpio: Failed to open export for writing");
free(dev); free(dev);
return NULL; return NULL;
} }
length = snprintf(bu, sizeof(bu), "%d", dev->pin); length = snprintf(bu, sizeof(bu), "%d", dev->pin);
@@ -452,7 +452,7 @@ mraa_gpio_read(mraa_gpio_context dev)
char bu[2]; char bu[2];
if (read(dev->value_fp, bu, 2*sizeof(char)) != 2) { if (read(dev->value_fp, bu, 2*sizeof(char)) != 2) {
syslog(LOG_ERR, "gpio: Failed to read a sensible value from sysfs"); syslog(LOG_ERR, "gpio: Failed to read a sensible value from sysfs");
return -1; return -1;
} }
lseek(dev->value_fp, 0, SEEK_SET); lseek(dev->value_fp, 0, SEEK_SET);