doc: Fix warnings associated with 'unbalanced grouping commands'

Builds of docs with doxygen 1.8.16 has a number of warnings of the form:
'warning: unbalanced grouping commands'.  Fix those warnings be either
balancing the group command or removing it.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2019-12-12 10:51:46 -06:00 committed by Kumar Gala
commit a8171db6a6
6 changed files with 2 additions and 15 deletions

View file

@ -130,10 +130,6 @@ static inline unsigned int irq_line_is_enabled_next_level(struct device *dev,
return api->intr_get_line_state(dev, irq); return api->intr_get_line_state(dev, irq);
} }
/**
* @}
*/
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View file

@ -66,8 +66,6 @@ struct log_source_dynamic_data {
* @brief Macro for initializing a pointer to the logger instance. * @brief Macro for initializing a pointer to the logger instance.
*/ */
/** @} */
#ifdef CONFIG_LOG #ifdef CONFIG_LOG
#define LOG_INSTANCE_FULL_NAME(_module_name, _inst_name) \ #define LOG_INSTANCE_FULL_NAME(_module_name, _inst_name) \

View file

@ -197,6 +197,7 @@ static inline bool arch_is_in_isr(void);
/** /**
* @defgroup arch-benchmarking Architecture-specific benchmarking globals * @defgroup arch-benchmarking Architecture-specific benchmarking globals
* @ingroup arch-interface * @ingroup arch-interface
* @{
*/ */
#ifdef CONFIG_EXECUTION_BENCHMARKING #ifdef CONFIG_EXECUTION_BENCHMARKING
@ -218,6 +219,7 @@ extern u64_t arch_timing_value_swap_temp;
/** /**
* @defgroup arch-misc Miscellaneous architecture APIs * @defgroup arch-misc Miscellaneous architecture APIs
* @ingroup arch-interface * @ingroup arch-interface
* @{
*/ */
/** /**

View file

@ -252,6 +252,3 @@ void test_k_float_disable_irq(void)
ztest_test_skip(); ztest_test_skip();
} }
#endif /* CONFIG_ARM && CONFIG_DYNAMIC_INTERRUPTS */ #endif /* CONFIG_ARM && CONFIG_DYNAMIC_INTERRUPTS */
/**
* @}
*/

View file

@ -458,4 +458,3 @@ void test_main(void)
ztest_unit_test(test_futex_wait_nowait)); ztest_unit_test(test_futex_wait_nowait));
ztest_run_test_suite(test_futex); ztest_run_test_suite(test_futex);
} }
/******************************************************************************/

View file

@ -102,8 +102,3 @@ void test_pipe_user_get_fail(void)
get_fail(p); get_fail(p);
} }
#endif #endif
/**
* @}
*/