From 3dd7c01a687d1112df038651c4530ea21140c26e Mon Sep 17 00:00:00 2001 From: John Klug Date: Wed, 28 Aug 2019 15:46:54 -0500 Subject: FIx Ethernet reset, usb hub reset, system board reset --- io-module/machine/mtcdt3.c | 6 +++--- io-module/mts_io_module.h | 2 +- 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 " #define DRIVER_DESC "MTS-IO Controller" #define DRIVER_NAME "mts-io" -- cgit v1.2.3