Update irq locking/unlocking comments
Removes references to 'local' CPU from IRQ locking/unlocking comments. On a single node system, the CPU must by definition be local. Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com> Change-Id: I56297f01db82a2ed798a7d6b5cabf4c04950d15e
This commit is contained in:
parent
4b19f3c661
commit
d1c4f08765
3 changed files with 8 additions and 8 deletions
|
@ -73,7 +73,7 @@ extern void _irq_exit(void);
|
|||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* irq_lock_inline - disable all interrupts on the local CPU (inline)
|
||||
* irq_lock_inline - disable all interrupts on the CPU (inline)
|
||||
*
|
||||
* See irq_lock() for full description
|
||||
*
|
||||
|
@ -93,7 +93,7 @@ static ALWAYS_INLINE unsigned int irq_lock_inline(void)
|
|||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* irq_unlock_inline - enable all interrupts on the local CPU (inline)
|
||||
* irq_unlock_inline - enable all interrupts on the CPU (inline)
|
||||
*
|
||||
* See irq_unlock() for full description
|
||||
*
|
||||
|
|
|
@ -73,7 +73,7 @@ extern void _IntExit(void);
|
|||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* irq_lock_inline - disable all interrupts on the local CPU (inline)
|
||||
* irq_lock_inline - disable all interrupts on the CPU (inline)
|
||||
*
|
||||
* This routine disables interrupts. It can be called from either interrupt,
|
||||
* task or fiber level. This routine returns an architecture-dependent
|
||||
|
@ -131,9 +131,9 @@ static ALWAYS_INLINE unsigned int irq_lock_inline(void)
|
|||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* irq_unlock_inline - enable all interrupts on the local CPU (inline)
|
||||
* irq_unlock_inline - enable all interrupts on the CPU (inline)
|
||||
*
|
||||
* This routine re-enables interrupts on the local CPU. The <key> parameter
|
||||
* This routine re-enables interrupts on the CPU. The <key> parameter
|
||||
* is an architecture-dependent lock-out key that is returned by a previous
|
||||
* invocation of irq_lock_inline().
|
||||
*
|
||||
|
|
|
@ -265,7 +265,7 @@ void _int_latency_stop (void);
|
|||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* irq_lock_inline - disable all interrupts on the local CPU (inline)
|
||||
* irq_lock_inline - disable all interrupts on the CPU (inline)
|
||||
*
|
||||
* This routine disables interrupts. It can be called from either interrupt,
|
||||
* task or fiber level. This routine returns an architecture-dependent
|
||||
|
@ -339,9 +339,9 @@ __asm volatile unsigned int irq_lock_inline (void)
|
|||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* irq_unlock_inline - enable all interrupts on the local CPU (inline)
|
||||
* irq_unlock_inline - enable all interrupts on the CPU (inline)
|
||||
*
|
||||
* This routine re-enables interrupts on the local CPU. The <key> parameter
|
||||
* This routine re-enables interrupts on the CPU. The <key> parameter
|
||||
* is an architecture-dependent lock-out key that is returned by a previous
|
||||
* invocation of irq_lock_inline().
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue