mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Revision:
187:0387e8f68319
Parent:
160:d5399cc887bb
--- a/targets/TARGET_STM/TARGET_STM32F0/pin_device.h	Fri Jun 22 16:45:37 2018 +0100
+++ b/targets/TARGET_STM/TARGET_STM32F0/pin_device.h	Thu Sep 06 13:40:20 2018 +0100
@@ -56,14 +56,15 @@
     }
 }
 
-static inline void stm_pin_SetAFPin( GPIO_TypeDef *gpio, PinName pin, uint32_t afnum)
+static inline void stm_pin_SetAFPin(GPIO_TypeDef *gpio, PinName pin, uint32_t afnum)
 {
     uint32_t ll_pin  = ll_pin_defines[STM_PIN(pin)];
 
-    if (STM_PIN(pin) > 7)
+    if (STM_PIN(pin) > 7) {
         LL_GPIO_SetAFPin_8_15(gpio, ll_pin, afnum);
-    else
+    } else {
         LL_GPIO_SetAFPin_0_7(gpio, ll_pin, afnum);
+    }
 }
 
 #endif