diff options
-rw-r--r-- | io-module/mths.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/io-module/mths.c b/io-module/mths.c index df7fa27..28a4f19 100644 --- a/io-module/mths.c +++ b/io-module/mths.c @@ -104,10 +104,19 @@ static struct gpio_pin gpio_pins_mths_0_0[] = { .active_low = 1, }, { - .name = "LED4", + .name = "LED3", .pin = { .gpio = AT91_PIN_PC20, .flags = GPIOF_OUT_INIT_HIGH, + .label = "led-c", + }, + .active_low = 1, + }, + { + .name = "LED4", + .pin = { + .gpio = AT91_PIN_PC16, + .flags = GPIOF_OUT_INIT_HIGH, .label = "led-cd", }, .active_low = 1, @@ -115,7 +124,7 @@ static struct gpio_pin gpio_pins_mths_0_0[] = { { .name = "LED5", .pin = { - .gpio = AT91_PIN_PC16, + .gpio = AT91_PIN_PC21, .flags = GPIOF_OUT_INIT_HIGH, .label = "led-status", }, |