diff options
author | Mike Nicholson <mike.nicholson@multitech.com> | 2021-02-18 17:15:07 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2021-02-19 14:40:15 -0600 |
commit | ccdc21ca4c4977edb64ee593e856b6ac5aa2930f (patch) | |
tree | e44e790f3987bc8eb896c6abd461f2fecbe2504b | |
parent | d6d749e7cee8a496aa070cdf1fadfb650af35021 (diff) | |
download | mts-io-ccdc21ca4c4977edb64ee593e856b6ac5aa2930f.tar.gz mts-io-ccdc21ca4c4977edb64ee593e856b6ac5aa2930f.tar.bz2 mts-io-ccdc21ca4c4977edb64ee593e856b6ac5aa2930f.zip |
The CD/STATUS LED GPIOS changed on CPM, update to use new ones4.5.3
-rw-r--r-- | io-module/machine/mtcpm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/io-module/machine/mtcpm.c b/io-module/machine/mtcpm.c index 32f7d9c..8e1c3c2 100644 --- a/io-module/machine/mtcpm.c +++ b/io-module/machine/mtcpm.c @@ -114,7 +114,7 @@ static struct gpio_pin gpio_pins_mtcpm[] = { { .name = "STATUS_LED", .pin = { - .gpio = OMAP_GPIO(0, 20), + .gpio = OMAP_GPIO(3, 22), .flags = GPIOF_OUT_INIT_LOW, .label = "led-status", }, @@ -122,7 +122,7 @@ static struct gpio_pin gpio_pins_mtcpm[] = { { .name = "CD", .pin = { - .gpio = OMAP_GPIO(0, 21), + .gpio = OMAP_GPIO(3, 23), .flags = GPIOF_OUT_INIT_HIGH, .label = "led-cd", }, |