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:
parent
8f7f62869a
commit
d2e28da06b
2 changed files with 0 additions and 6 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue