From 39d33fc3528ccfb027b7ce6245a920f4ce9ec7ca Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Thu, 6 Jan 2022 17:29:36 -0800 Subject: [PATCH] shell: remove @return doc for void functions For functions returning nothing, there is no need to document with @return, as Doxgen complains about "documented empty return type of ...". Signed-off-by: Daniel Leung --- include/shell/shell.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/shell/shell.h b/include/shell/shell.h index 4246be149d6..6c728a94b77 100644 --- a/include/shell/shell.h +++ b/include/shell/shell.h @@ -842,8 +842,6 @@ int shell_init(const struct shell *shell, const void *transport_config, * * @param shell Pointer to shell instance. * @param cb Callback called when uninitialization is completed. - * - * @return Standard error code. */ void shell_uninit(const struct shell *shell, shell_uninit_cb_t cb);