From 7b9e8ba2e4a1ebece8ebfa9c151be688274bc4d1 Mon Sep 17 00:00:00 2001 From: Alexandru Gagniuc Date: Tue, 7 May 2013 18:59:41 -0500 Subject: [PATCH] lm4f-doc: Sanitize doxygen structure in rcc.h By somo copypaste error, the doxygen group rcc_defines was defined twice. Don't do that. Keep Ken's doxygen structure and drop the old one. Signed-off-by: Alexandru Gagniuc --- include/libopencm3/lm4f/rcc.h | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/include/libopencm3/lm4f/rcc.h b/include/libopencm3/lm4f/rcc.h index 332358ed..c667d334 100644 --- a/include/libopencm3/lm4f/rcc.h +++ b/include/libopencm3/lm4f/rcc.h @@ -32,18 +32,11 @@ LGPL License Terms @ref lgpl_license * along with this library. If not, see . */ -/** - * @defgroup rcc_defines RCC Defines - * - * @ingroup LM4F_defines - * - * \brief Defined Constants and Types for the LM4F Clock control API - * @{ - */ - #ifndef LM4F_RCC_H #define LM4F_RCC_H +/**@{*/ + #include /** @@ -106,9 +99,6 @@ typedef enum { XTAL_25M = SYSCTL_RCC_XTAL_25M, } xtal_t; -/** - * @} - */ /* ============================================================================= * Function prototypes * ---------------------------------------------------------------------------*/ @@ -137,5 +127,6 @@ void rcc_sysclk_config(osc_src_t src, xtal_t xtal, u8 pll_div400); END_DECLS +/**@}*/ #endif /* LM4F_RCC_H */