Skip to content

Commit 15cd907

Browse files
authored
Fix alignment
1 parent f548f55 commit 15cd907

File tree

1 file changed

+5
-5
lines changed
  • targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_SDK_15_0/components/libraries/util

1 file changed

+5
-5
lines changed

targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_SDK_15_0/components/libraries/util/app_util_platform.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void app_util_critical_region_enter(uint8_t *p_nested)
7777
* Retarget nRF SDK to use Mbed critical section API
7878
*/
7979
//app_util_disable_irq();
80-
core_util_critical_section_enter();
80+
core_util_critical_section_enter();
8181
#endif
8282

8383
}
@@ -93,10 +93,10 @@ void app_util_critical_region_exit(uint8_t nested)
9393
(void) sd_nvic_critical_region_exit(nested);
9494
#else
9595
/** Mbed modification
96-
* Retarget nRF SDK to use Mbed critical section API
97-
*/
98-
//app_util_enable_irq();
99-
core_util_critical_section_exit();
96+
* Retarget nRF SDK to use Mbed critical section API
97+
*/
98+
//app_util_enable_irq();
99+
core_util_critical_section_exit();
100100
#endif
101101
}
102102

0 commit comments

Comments
 (0)