From 8cb066d3dcac62c084490c915ba0c77c002e5542 Mon Sep 17 00:00:00 2001 From: Thomas Klaehn Date: Mon, 29 Jul 2019 14:54:52 +0200 Subject: [PATCH] fix --- src/gpio.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/gpio.c b/src/gpio.c index ec47b9e..cf994c0 100644 --- a/src/gpio.c +++ b/src/gpio.c @@ -9,7 +9,7 @@ #include #include -#include +#include #define IN 0 #define OUT 1 @@ -22,6 +22,7 @@ static int gpio_export(int pin); static int gpio_unexport(int pin); static int gpio_set_direction(int pin, int dir); +// cppcheck-suppress unusedFunction int gpio_open(const struct gpio_sys *gpio) { int res; @@ -41,6 +42,7 @@ int gpio_open(const struct gpio_sys *gpio) return 0; } +// cppcheck-suppress unusedFunction int gpio_close(const struct gpio_sys *gpio) { int res; @@ -58,6 +60,7 @@ int gpio_close(const struct gpio_sys *gpio) return 0; } +// cppcheck-suppress unusedFunction int gpio_direction(struct gpio_sys *gpio, int direction) { int res; @@ -76,6 +79,7 @@ int gpio_direction(struct gpio_sys *gpio, int direction) return 0; } +// cppcheck-suppress unusedFunction int gpio_read(const struct gpio_sys *gpio) { char path[VALUE_MAX]; @@ -99,6 +103,7 @@ int gpio_read(const struct gpio_sys *gpio) return(atoi(value_str)); } +// cppcheck-suppress unusedFunction int gpio_write(const struct gpio_sys *gpio, int value) { static const char s_values_str[] = "01";