summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Nicholson <mike.nicholson@multitech.com>2021-02-24 13:30:03 -0600
committerMike Nicholson <mike.nicholson@multitech.com>2021-02-24 13:30:03 -0600
commitf22842f6e2bd0b433e973654b24b5dba378ac58d (patch)
tree9aeb000ca4cbce8730fc6b529030c6142d617348
parentf5f8a6e79ce55c15eb806c09c3abaabaf2abb075 (diff)
downloadmts-io-f22842f6e2bd0b433e973654b24b5dba378ac58d.tar.gz
mts-io-f22842f6e2bd0b433e973654b24b5dba378ac58d.tar.bz2
mts-io-f22842f6e2bd0b433e973654b24b5dba378ac58d.zip
Correct gnss int and hub reset
-rw-r--r--io-module/machine/mtcpm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io-module/machine/mtcpm.c b/io-module/machine/mtcpm.c
index 8e1c3c2..481d649 100644
--- a/io-module/machine/mtcpm.c
+++ b/io-module/machine/mtcpm.c
@@ -65,7 +65,7 @@ static struct gpio_pin gpio_pins_mtcpm[] = {
{
.name = "USBHUB_RESET",
.pin = {
- .gpio = OMAP_GPIO(3, 15),
+ .gpio = OMAP_GPIO(2, 3),
.flags = GPIOF_OUT_INIT_HIGH,
.label = "usbhub-reset",
},
@@ -83,7 +83,7 @@ static struct gpio_pin gpio_pins_mtcpm[] = {
{
.name = "GNSS_INT",
.pin = {
- .gpio = OMAP_GPIO(5,12), /* 5_12 */
+ .gpio = OMAP_GPIO(2, 16),
.flags = GPIOF_OUT_INIT_HIGH,
.label = "gnss-int",
},