Put function curlies into their own line according to our coding standards all across the codebase.

This commit is contained in:
László Monda
2017-11-10 23:14:44 +01:00
parent f3682efe53
commit f927aef7f5
7 changed files with 32 additions and 16 deletions

View File

@@ -1,7 +1,8 @@
#include "led_pwm.h"
#include "fsl_port.h"
void LedPwm_Init(void) {
void LedPwm_Init(void)
{
CLOCK_EnableClock(LED_PWM_CLOCK);
PORT_SetPinMux(LED_PWM_PORT, LED_PWM_PIN, kPORT_MuxAlt2);