From 3f310e462f130cb54f73f26455580fee0eb8342b Mon Sep 17 00:00:00 2001 From: George Oikonomou Date: Fri, 1 May 2015 16:08:10 +0100 Subject: [PATCH] Tidy-up clock configuration --- platform/srf06-cc26xx/srf06/board.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/platform/srf06-cc26xx/srf06/board.c b/platform/srf06-cc26xx/srf06/board.c index 02689acda..b7555f0a6 100644 --- a/platform/srf06-cc26xx/srf06/board.c +++ b/platform/srf06-cc26xx/srf06/board.c @@ -90,9 +90,8 @@ board_init() /* Configure all clock domains to run at full speed */ ti_lib_prcm_clock_configure_set(PRCM_DOMAIN_SYSBUS | PRCM_DOMAIN_CPU | - PRCM_DOMAIN_CPU | PRCM_DOMAIN_TIMER | - PRCM_DOMAIN_SERIAL | PRCM_DOMAIN_PERIPH, - PRCM_CLOCK_DIV_1); + PRCM_DOMAIN_TIMER | PRCM_DOMAIN_SERIAL | + PRCM_DOMAIN_PERIPH, PRCM_CLOCK_DIV_1); /* Enable GPIO peripheral */ ti_lib_prcm_peripheral_run_enable(PRCM_PERIPH_GPIO);