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:
parent
63b4300577
commit
975e257f2c
7 changed files with 13 additions and 75 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue