Commit ef3c61a0 authored by Kent Gibson's avatar Kent Gibson Committed by Bartosz Golaszewski

tools: gpio: fix spurious close warning in lsgpio

Fix bogus close warning that occurs when opening the character device
fails.
Signed-off-by: default avatarKent Gibson <warthog618@gmail.com>
Signed-off-by: default avatarBartosz Golaszewski <bgolaszewski@baylibre.com>
parent 21249616
...@@ -94,7 +94,7 @@ int list_device(const char *device_name) ...@@ -94,7 +94,7 @@ int list_device(const char *device_name)
if (fd == -1) { if (fd == -1) {
ret = -errno; ret = -errno;
fprintf(stderr, "Failed to open %s\n", chrdev_name); fprintf(stderr, "Failed to open %s\n", chrdev_name);
goto exit_close_error; goto exit_free_name;
} }
/* Inspect this GPIO chip */ /* Inspect this GPIO chip */
...@@ -141,6 +141,7 @@ int list_device(const char *device_name) ...@@ -141,6 +141,7 @@ int list_device(const char *device_name)
exit_close_error: exit_close_error:
if (close(fd) == -1) if (close(fd) == -1)
perror("Failed to close GPIO character device file"); perror("Failed to close GPIO character device file");
exit_free_name:
free(chrdev_name); free(chrdev_name);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment