diff options
author | John Klug <john.klug@multitech.com> | 2021-07-08 03:26:23 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2021-11-12 13:20:59 -0600 |
commit | 1fde8ce2e6b6356ec698d2bc38122bd4c3a268c7 (patch) | |
tree | bbbe9888d497fd0fe40299e8d73c9db24d5fa86c | |
parent | 7535a66782aa1e3e2e22c8a35c4b0bc181874c75 (diff) | |
download | mtac-gpiob-1fde8ce2e6b6356ec698d2bc38122bd4c3a268c7.tar.gz mtac-gpiob-1fde8ce2e6b6356ec698d2bc38122bd4c3a268c7.tar.bz2 mtac-gpiob-1fde8ce2e6b6356ec698d2bc38122bd4c3a268c7.zip |
Missing return status from gpiob_teardown
-rw-r--r-- | mtac_gpiob.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mtac_gpiob.c b/mtac_gpiob.c index 46eac16..ee83416 100644 --- a/mtac_gpiob.c +++ b/mtac_gpiob.c @@ -1,4 +1,4 @@ -#define DRIVER_VERSION "v1.1.3" +#define DRIVER_VERSION "v1.1.4" #define DRIVER_AUTHOR "Multi-Tech" #define DRIVER_DESC "MTS General Purpose I/O Accessory Card" #define DRIVER_NAME "mtac-gpiob" @@ -768,8 +768,6 @@ void set_gpiob_info(struct ap_info* info) { info->setup = &gpiob_setup; info->teardown = &gpiob_teardown; info->gpio_pin_name_by_attr_name = &gpiob_gpio_pin_name_by_attr_name; - - return true; } /* |