aboutsummaryrefslogtreecommitdiff
path: root/examples/mb525/pwmleds/pwmleds.c
diff options
context:
space:
mode:
authorUwe Hermann2010-06-29 23:01:44 +0200
committerUwe Hermann2010-06-29 23:01:44 +0200
commit6ba179b36100d5db22106579ff0d5f5343ea2870 (patch)
tree0bf09f71d47bda43186b37daa53e311e6db9af94 /examples/mb525/pwmleds/pwmleds.c
parent47b31246ca0eff8da5495b156d7e4ce1bbd020db (diff)
Various cosmetic and coding style fixes.
Diffstat (limited to 'examples/mb525/pwmleds/pwmleds.c')
-rw-r--r--examples/mb525/pwmleds/pwmleds.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/mb525/pwmleds/pwmleds.c b/examples/mb525/pwmleds/pwmleds.c
index 282ae61..23ebbe1 100644
--- a/examples/mb525/pwmleds/pwmleds.c
+++ b/examples/mb525/pwmleds/pwmleds.c
@@ -244,7 +244,8 @@ void clock_setup(void)
rcc_peripheral_enable_clock(&RCC_APB1ENR, RCC_APB1ENR_TIM3EN);
/* Enable GPIOC, Alternate Function clocks. */
- rcc_peripheral_enable_clock(&RCC_APB2ENR, RCC_APB2ENR_IOPCEN | RCC_APB2ENR_AFIOEN);
+ rcc_peripheral_enable_clock(&RCC_APB2ENR,
+ RCC_APB2ENR_IOPCEN | RCC_APB2ENR_AFIOEN);
}
void gpio_setup(void)