summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2019-08-28 15:46:54 -0500
committerJohn Klug <john.klug@multitech.com>2019-08-28 15:46:54 -0500
commit3dd7c01a687d1112df038651c4530ea21140c26e (patch)
tree2b1c3fa898c0b0e4cb43ae41ea31d447a00b9232
parent43468a14981d2b34ad7a1c6bb43cd9650db5e479 (diff)
downloadmts-io-4.1.5.tar.gz
mts-io-4.1.5.tar.bz2
mts-io-4.1.5.zip
FIx Ethernet reset, usb hub reset, system board reset4.1.5
-rw-r--r--io-module/machine/mtcdt3.c6
-rw-r--r--io-module/mts_io_module.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/io-module/machine/mtcdt3.c b/io-module/machine/mtcdt3.c
index 7c8e781..cc4c8a7 100644
--- a/io-module/machine/mtcdt3.c
+++ b/io-module/machine/mtcdt3.c
@@ -33,7 +33,7 @@ static struct gpio_pin gpio_pins_mtcdt3[] = {
.flags = GPIOF_IN,
.label = "reset",
},
- .active_low = 1,
+ .active_low = 0,
},
{
.name = "WIFI_BT_INT",
@@ -71,7 +71,7 @@ static struct gpio_pin gpio_pins_mtcdt3[] = {
.flags = GPIOF_OUT_INIT_HIGH,
.label = "usbhub-reset",
},
- .active_low = 1,
+ .active_low = 0,
},
{
.name = "ETH_RESET",
@@ -80,7 +80,7 @@ static struct gpio_pin gpio_pins_mtcdt3[] = {
.flags = GPIOF_OUT_INIT_HIGH,
.label = "eth-reset",
},
- .active_low = 1,
+ .active_low = 0,
},
{
.name = "GNSS_INT",
diff --git a/io-module/mts_io_module.h b/io-module/mts_io_module.h
index 1c3960b..0453265 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.4"
+#define DRIVER_VERSION "v4.1.5"
#define DRIVER_AUTHOR "James Maki <jmaki@multitech.com>"
#define DRIVER_DESC "MTS-IO Controller"
#define DRIVER_NAME "mts-io"