From 4800a0951e1440f761285f66b94fa7cff74f12cf Mon Sep 17 00:00:00 2001 From: John Klug Date: Thu, 29 Aug 2019 10:13:28 -0500 Subject: Make the names the same as MTR for separate WiFi/BT enable/reset --- io-module/machine/mtcdt3.c | 8 ++++---- io-module/mts_io_module.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/io-module/machine/mtcdt3.c b/io-module/machine/mtcdt3.c index cc4c8a7..bae9c82 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_RESET", + .name = "WIFI_ENABLE", .pin = { .gpio = OMAP_GPIO(4,11), /* 4_11 */ .flags = GPIOF_OUT_INIT_HIGH, .label = "wifi-reset", }, .capability = CAPA_WIFI, - .active_low = 1, + .active_low = 0, }, { - .name = "BT_RESET", + .name = "BT_ENABLE", .pin = { .gpio = OMAP_GPIO(4,10), /* 4_10 */ .flags = GPIOF_OUT_INIT_HIGH, .label = "bt-reset", }, .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 0453265..897868a 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.5" +#define DRIVER_VERSION "v4.1.6" #define DRIVER_AUTHOR "James Maki " #define DRIVER_DESC "MTS-IO Controller" #define DRIVER_NAME "mts-io" -- cgit v1.2.3