diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2023-04-07 12:27:09 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2023-04-07 12:27:09 -0400 |
commit | e5ed245ff2cc04f80fa248c18ea18535cc06e553 (patch) | |
tree | 895fa5a83ab13b43325529203347afbc10c585fe /src/stm32/hard_pwm.c | |
parent | ecc23fc6fa3c3a866cf8dbbb0a118adbe7e61568 (diff) | |
download | kutter-e5ed245ff2cc04f80fa248c18ea18535cc06e553.tar.gz kutter-e5ed245ff2cc04f80fa248c18ea18535cc06e553.tar.xz kutter-e5ed245ff2cc04f80fa248c18ea18535cc06e553.zip |
stm32: Improve ifdef indent in hard_pwm.c
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32/hard_pwm.c')
-rw-r--r-- | src/stm32/hard_pwm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stm32/hard_pwm.c b/src/stm32/hard_pwm.c index dbed84c1..a15b1c37 100644 --- a/src/stm32/hard_pwm.c +++ b/src/stm32/hard_pwm.c @@ -117,12 +117,12 @@ static const struct gpio_pwm_info pwm_regs[] = { {TIM1, GPIO('B', 3), 2, GPIO_FUNCTION(1)}, {TIM3, GPIO('B', 4), 1, GPIO_FUNCTION(1)}, {TIM3, GPIO('B', 5), 2, GPIO_FUNCTION(1)}, -#if CONFIG_MACH_STM32G0Bx + #if CONFIG_MACH_STM32G0Bx {TIM4, GPIO('B', 6), 1, GPIO_FUNCTION(9)}, {TIM4, GPIO('B', 7), 2, GPIO_FUNCTION(9)}, {TIM4, GPIO('B', 8), 3, GPIO_FUNCTION(9)}, {TIM4, GPIO('B', 9), 4, GPIO_FUNCTION(9)}, -#endif + #endif {TIM15, GPIO('B', 14), 1, GPIO_FUNCTION(5)}, {TIM15, GPIO('B', 15), 2, GPIO_FUNCTION(5)}, {TIM15, GPIO('C', 1), 1, GPIO_FUNCTION(2)}, @@ -136,12 +136,12 @@ static const struct gpio_pwm_info pwm_regs[] = { {TIM14, GPIO('C', 12), 1, GPIO_FUNCTION(2)}, {TIM16, GPIO('D', 0), 1, GPIO_FUNCTION(2)}, {TIM17, GPIO('D', 1), 1, GPIO_FUNCTION(2)}, -#if CONFIG_MACH_STM32G0Bx + #if CONFIG_MACH_STM32G0Bx {TIM4, GPIO('D', 12), 1, GPIO_FUNCTION(2)}, {TIM4, GPIO('D', 13), 2, GPIO_FUNCTION(2)}, {TIM4, GPIO('D', 14), 3, GPIO_FUNCTION(2)}, {TIM4, GPIO('D', 15), 4, GPIO_FUNCTION(2)}, -#endif + #endif {TIM3, GPIO('E', 3), 1, GPIO_FUNCTION(1)}, {TIM3, GPIO('E', 4), 2, GPIO_FUNCTION(1)}, {TIM3, GPIO('E', 5), 3, GPIO_FUNCTION(1)}, |