Rename _IsrWrapper camelCase to _isr_wrapper
Change-Id: I217eced3965fbf313a7e0fbef38db9dd876fcf80 Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
parent
2e0f3845f7
commit
fbb1526d1a
7 changed files with 14 additions and 14 deletions
|
@ -35,7 +35,7 @@ DESCRIPTION
|
|||
|
||||
Provides functions for performing kernel handling when exiting exceptions or
|
||||
interrupts that are installed directly in the vector table (i.e. that are not
|
||||
wrapped around by _IsrWrapper()).
|
||||
wrapped around by _isr_wrapper()).
|
||||
*/
|
||||
|
||||
#define _ASMLANGUAGE
|
||||
|
|
|
@ -50,14 +50,14 @@ _ASM_FILE_PROLOGUE
|
|||
|
||||
GDATA(_IsrTable)
|
||||
|
||||
GTEXT(_IsrWrapper)
|
||||
GTEXT(_isr_wrapper)
|
||||
GTEXT(_IntExit)
|
||||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* _IsrWrapper - wrapper around ISRs when inserted in software ISR table
|
||||
* _isr_wrapper - wrapper around ISRs when inserted in software ISR table
|
||||
*
|
||||
* When inserted in the vector table, _IsrWrapper() demuxes the ISR table using
|
||||
* When inserted in the vector table, _isr_wrapper() demuxes the ISR table using
|
||||
* the running interrupt number as the index, and invokes the registered ISR
|
||||
* with its correspoding argument. When returning from the ISR, it determines
|
||||
* if a context switch needs to happen (see documentation for __pendsv()) and
|
||||
|
@ -66,7 +66,7 @@ GTEXT(_IntExit)
|
|||
*
|
||||
* RETURNS: N/A
|
||||
*/
|
||||
SECTION_FUNC(TEXT, _IsrWrapper)
|
||||
SECTION_FUNC(TEXT, _isr_wrapper)
|
||||
|
||||
_GDB_STUB_EXC_ENTRY
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue