From ca843281996b6a1d2a47fabb2691a39c0fda6e91 Mon Sep 17 00:00:00 2001 From: Arnaud Pouliquen Date: Wed, 6 Apr 2022 09:33:54 +0200 Subject: [PATCH] Doc: fix doc generation warnings in system sleep.h files Fix "unbalanced grouping commands" warnings by cleaning up the end-of-block occurrences, defined without starting tag. No need to define an API interface block in these files, the interface is already described in the main sleep.h file. Signed-off-by: Arnaud Pouliquen --- lib/system/freertos/sleep.h | 2 -- lib/system/generic/sleep.h | 2 -- lib/system/linux/sleep.h | 2 -- lib/system/nuttx/sleep.h | 2 -- lib/system/zephyr/sleep.h | 2 -- 5 files changed, 10 deletions(-) diff --git a/lib/system/freertos/sleep.h b/lib/system/freertos/sleep.h index 60a58a17..2ad9994a 100644 --- a/lib/system/freertos/sleep.h +++ b/lib/system/freertos/sleep.h @@ -31,8 +31,6 @@ static inline int __metal_sleep_usec(unsigned int usec) return 0; } -/** @} */ - #ifdef __cplusplus } #endif diff --git a/lib/system/generic/sleep.h b/lib/system/generic/sleep.h index aa86df49..63d53088 100644 --- a/lib/system/generic/sleep.h +++ b/lib/system/generic/sleep.h @@ -29,8 +29,6 @@ static inline int __metal_sleep_usec(unsigned int usec) return 0; } -/** @} */ - #ifdef __cplusplus } #endif diff --git a/lib/system/linux/sleep.h b/lib/system/linux/sleep.h index d5cbe334..414576b3 100644 --- a/lib/system/linux/sleep.h +++ b/lib/system/linux/sleep.h @@ -27,8 +27,6 @@ static inline int __metal_sleep_usec(unsigned int usec) return usleep(usec); } -/** @} */ - #ifdef __cplusplus } #endif diff --git a/lib/system/nuttx/sleep.h b/lib/system/nuttx/sleep.h index b15f3b6f..c875ab66 100644 --- a/lib/system/nuttx/sleep.h +++ b/lib/system/nuttx/sleep.h @@ -27,8 +27,6 @@ static inline int __metal_sleep_usec(unsigned int usec) return nxsig_usleep(usec); } -/** @} */ - #ifdef __cplusplus } #endif diff --git a/lib/system/zephyr/sleep.h b/lib/system/zephyr/sleep.h index 4333990c..ac269dc0 100644 --- a/lib/system/zephyr/sleep.h +++ b/lib/system/zephyr/sleep.h @@ -28,8 +28,6 @@ static inline int __metal_sleep_usec(unsigned int usec) return 0; } -/** @} */ - #ifdef __cplusplus } #endif