arm: make _timer_int_handler optional
If CORTEX_M_SYSTICK is not selected, do not reference _timer_int_handler. SoC will need to define a custom system clock implementation. Change-Id: I655f3abf66953e434fef69ed16db2d9c2dcc486e Signed-off-by: Vinayak Chettimada <vinayak.kariappa.chettimada@nordicsemi.no> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
11a52750d3
commit
3bc143962c
1 changed files with 4 additions and 0 deletions
|
@ -79,4 +79,8 @@ SECTION_SUBSEC_FUNC(exc_vector_table,_vector_table_section,__start)
|
|||
#endif
|
||||
.word __reserved
|
||||
.word __pendsv
|
||||
#if defined(CONFIG_CORTEX_M_SYSTICK)
|
||||
.word _timer_int_handler
|
||||
#else
|
||||
.word __reserved
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue