From a4db9c285700eb373bc9b6750f597e487c323a8f Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Thu, 6 Jan 2022 17:31:32 -0800 Subject: [PATCH] modem: 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/drivers/modem/gsm_ppp.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/drivers/modem/gsm_ppp.h b/include/drivers/modem/gsm_ppp.h index 2a79405d481..689ec26fadf 100644 --- a/include/drivers/modem/gsm_ppp.h +++ b/include/drivers/modem/gsm_ppp.h @@ -43,8 +43,6 @@ void gsm_ppp_stop(const struct device *dev); * @param modem_off: callback function to * execute during gsm ppp stopping. * @param user_data: user specified data - * - * @retval None. */ void gsm_ppp_register_modem_power_callback(const struct device *dev, gsm_modem_power_cb modem_on,