summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2019-08-29 11:32:33 -0500
committerJohn Klug <john.klug@multitech.com>2019-08-29 11:32:33 -0500
commit8ffd3e6e3356ecd0e85ca55184590fc7555511d9 (patch)
tree5dc2c16af89f370c7991e225a7c3206749a0fa80
parent4800a0951e1440f761285f66b94fa7cff74f12cf (diff)
downloadmts-io-8ffd3e6e3356ecd0e85ca55184590fc7555511d9.tar.gz
mts-io-8ffd3e6e3356ecd0e85ca55184590fc7555511d9.tar.bz2
mts-io-8ffd3e6e3356ecd0e85ca55184590fc7555511d9.zip
Fix polarity and labels of wifi/bt in mtcdt34.1.7
-rw-r--r--io-module/machine/mtcdt3.c12
-rw-r--r--io-module/mts_io_module.h2
2 files changed, 7 insertions, 7 deletions
diff --git a/io-module/machine/mtcdt3.c b/io-module/machine/mtcdt3.c
index bae9c82..10bb5a5 100644
--- a/io-module/machine/mtcdt3.c
+++ b/io-module/machine/mtcdt3.c
@@ -45,24 +45,24 @@ static struct gpio_pin gpio_pins_mtcdt3[] = {
.capability = CAPA_BLUETOOTH,
},
{
- .name = "WIFI_ENABLE",
+ .name = "WIFI_RESET",
.pin = {
.gpio = OMAP_GPIO(4,11), /* 4_11 */
.flags = GPIOF_OUT_INIT_HIGH,
- .label = "wifi-reset",
+ .label = "wlan-enabled",
},
.capability = CAPA_WIFI,
- .active_low = 0,
+ .active_low = 1,
},
{
- .name = "BT_ENABLE",
+ .name = "BT_RESET",
.pin = {
.gpio = OMAP_GPIO(4,10), /* 4_10 */
.flags = GPIOF_OUT_INIT_HIGH,
- .label = "bt-reset",
+ .label = "bt-enabled",
},
.capability = CAPA_BLUETOOTH,
- .active_low = 0,
+ .active_low = 1,
},
{
.name = "USBHUB_RESET",
diff --git a/io-module/mts_io_module.h b/io-module/mts_io_module.h
index 897868a..febcee7 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.6"
+#define DRIVER_VERSION "v4.1.7"
#define DRIVER_AUTHOR "James Maki <jmaki@multitech.com>"
#define DRIVER_DESC "MTS-IO Controller"
#define DRIVER_NAME "mts-io"