drivers: interrupt_controller: remove @return doc for void funcs

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 16:35:43 -08:00 committed by Anas Nashif
commit 975e257f2c
7 changed files with 13 additions and 75 deletions

View file

@ -247,8 +247,6 @@ unsigned int z_smp_global_lock(void);
* @note Can be called by ISRs.
*
* @param key Lock-out key generated by irq_lock().
*
* @return N/A
*/
#ifdef CONFIG_SMP
void z_smp_global_unlock(unsigned int key);
@ -391,8 +389,6 @@ static inline unsigned int irq_parent_level_3(unsigned int irq)
* This routine enables interrupts from source @a irq.
*
* @param irq IRQ line.
*
* @return N/A
*/
#define irq_enable(irq) arch_irq_enable(irq)
@ -402,8 +398,6 @@ static inline unsigned int irq_parent_level_3(unsigned int irq)
* This routine disables interrupts from source @a irq.
*
* @param irq IRQ line.
*
* @return N/A
*/
#define irq_disable(irq) arch_irq_disable(irq)