audio: 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:29:08 -08:00 committed by Anas Nashif
commit d2e28da06b
2 changed files with 0 additions and 6 deletions

View file

@ -156,8 +156,6 @@ static inline int audio_codec_configure(const struct device *dev,
* Setup the audio codec device to start the audio playback
*
* @param dev Pointer to the device structure for codec driver instance.
*
* @return none
*/
static inline void audio_codec_start_output(const struct device *dev)
{
@ -173,8 +171,6 @@ static inline void audio_codec_start_output(const struct device *dev)
* Setup the audio codec device to stop the audio playback
*
* @param dev Pointer to the device structure for codec driver instance.
*
* @return none
*/
static inline void audio_codec_stop_output(const struct device *dev)
{