Skip to content

Commit

Permalink
Doc: fix doc generation warnings in system sleep.h files
Browse files Browse the repository at this point in the history
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 <arnaud.pouliquen@foss.st.com>
  • Loading branch information
arnopo committed Apr 11, 2022
1 parent cf04377 commit d2555ab
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions lib/system/freertos/sleep.h
Expand Up @@ -31,8 +31,6 @@ static inline int __metal_sleep_usec(unsigned int usec)
return 0;
}

/** @} */

#ifdef __cplusplus
}
#endif
Expand Down
2 changes: 0 additions & 2 deletions lib/system/generic/sleep.h
Expand Up @@ -29,8 +29,6 @@ static inline int __metal_sleep_usec(unsigned int usec)
return 0;
}

/** @} */

#ifdef __cplusplus
}
#endif
Expand Down
2 changes: 0 additions & 2 deletions lib/system/linux/sleep.h
Expand Up @@ -27,8 +27,6 @@ static inline int __metal_sleep_usec(unsigned int usec)
return usleep(usec);
}

/** @} */

#ifdef __cplusplus
}
#endif
Expand Down
2 changes: 0 additions & 2 deletions lib/system/nuttx/sleep.h
Expand Up @@ -27,8 +27,6 @@ static inline int __metal_sleep_usec(unsigned int usec)
return nxsig_usleep(usec);
}

/** @} */

#ifdef __cplusplus
}
#endif
Expand Down
2 changes: 0 additions & 2 deletions lib/system/zephyr/sleep.h
Expand Up @@ -28,8 +28,6 @@ static inline int __metal_sleep_usec(unsigned int usec)
return 0;
}

/** @} */

#ifdef __cplusplus
}
#endif
Expand Down

0 comments on commit d2555ab

Please sign in to comment.