mcumgr: 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 <daniel.leung@intel.com>
This commit is contained in:
Daniel Leung 2022-01-06 17:30:39 -08:00 committed by Anas Nashif
commit fc573abc8a

View file

@ -95,8 +95,6 @@ struct zephyr_smp_transport {
* @param get_mtu_func The transport's get-MTU function. * @param get_mtu_func The transport's get-MTU function.
* @param ud_copy_func The transport buffer user_data copy function. * @param ud_copy_func The transport buffer user_data copy function.
* @param ud_free_func The transport buffer user_data free function. * @param ud_free_func The transport buffer user_data free function.
*
* @return 0 on success, MGMT_ERR_[...] code on failure.
*/ */
void zephyr_smp_transport_init(struct zephyr_smp_transport *zst, void zephyr_smp_transport_init(struct zephyr_smp_transport *zst,
zephyr_smp_transport_out_fn *output_func, zephyr_smp_transport_out_fn *output_func,