From 1cf37e0c1a49078ef2e926b8b9ffb2b537df5772 Mon Sep 17 00:00:00 2001 From: George Oikonomou Date: Fri, 15 May 2015 23:36:54 +0100 Subject: [PATCH] Tidy-up code style --- cpu/cc26xx/dev/oscillators.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/cc26xx/dev/oscillators.c b/cpu/cc26xx/dev/oscillators.c index 156ee5dd1..06f97a92a 100644 --- a/cpu/cc26xx/dev/oscillators.c +++ b/cpu/cc26xx/dev/oscillators.c @@ -81,7 +81,7 @@ oscillators_select_lf_xosc(void) ti_lib_osc_clock_source_set(OSC_SRC_CLK_LF, OSC_XOSC_LF); /* Wait for LF clock source to become XOSC_LF */ - while(ti_lib_osc_clock_source_get(OSC_SRC_CLK_LF) != OSC_XOSC_LF) ; + while(ti_lib_osc_clock_source_get(OSC_SRC_CLK_LF) != OSC_XOSC_LF); /* Disable the LF clock qualifiers */ ti_lib_ddi_16_bit_field_write(AUX_DDI0_OSC_BASE, DDI_0_OSC_O_CTL0, @@ -106,7 +106,7 @@ oscillators_select_lf_rcosc(void) ti_lib_osc_clock_source_set(OSC_SRC_CLK_LF, OSC_RCOSC_LF); /* Wait for LF clock source to become XOSC_LF */ - while(ti_lib_osc_clock_source_get(OSC_SRC_CLK_LF) != OSC_RCOSC_LF) ; + while(ti_lib_osc_clock_source_get(OSC_SRC_CLK_LF) != OSC_RCOSC_LF); } /* Restore the SMPH clock and disable the OSC interface */