From 46434822dcdce23bec6b55488e7a030f2cf28a9d Mon Sep 17 00:00:00 2001 From: John Klug Date: Tue, 3 Sep 2019 17:29:57 -0500 Subject: Bluetooth and WiFi enable are active high --- io-module/machine/mtcdt3.c | 4 ++-- io-module/mts_io_module.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/io-module/machine/mtcdt3.c b/io-module/machine/mtcdt3.c index 2fd5637..030d7d2 100644 --- a/io-module/machine/mtcdt3.c +++ b/io-module/machine/mtcdt3.c @@ -52,7 +52,7 @@ static struct gpio_pin gpio_pins_mtcdt3[] = { .label = "wlan-enabled", }, .capability = CAPA_WIFI, - .active_low = 1, + .active_low = 0, }, { .name = "BT_RESET", @@ -62,7 +62,7 @@ static struct gpio_pin gpio_pins_mtcdt3[] = { .label = "bt-enabled", }, .capability = CAPA_BLUETOOTH, - .active_low = 1, + .active_low = 0, }, { .name = "USBHUB_RESET", diff --git a/io-module/mts_io_module.h b/io-module/mts_io_module.h index e0455be..7527025 100644 --- a/io-module/mts_io_module.h +++ b/io-module/mts_io_module.h @@ -5,7 +5,7 @@ * MTAC cards. */ -#define DRIVER_VERSION "v4.1.8" +#define DRIVER_VERSION "v4.1.9" #define DRIVER_AUTHOR "James Maki " #define DRIVER_DESC "MTS-IO Controller" #define DRIVER_NAME "mts-io" -- cgit v1.2.3