mirror of https://github.com/thesofproject/sof.git
arch: move xtos_exc_handler_table to bss
Moves xtos_exc_handler_table to bss for SMP arch. It's modified at runtime, so shouldn't be kept in data, which is supposed to be read-only. Signed-off-by: Tomasz Lauda <tomasz.lauda@linux.intel.com>
This commit is contained in:
parent
2b4467c007
commit
506f5a78d9
|
@ -143,7 +143,7 @@ xtos_exc_handler_table_r:
|
||||||
.rept XCHAL_EXCCAUSE_NUM-40
|
.rept XCHAL_EXCCAUSE_NUM-40
|
||||||
.word xtos_unhandled_exception //40-63 (reserved for TIE)
|
.word xtos_unhandled_exception //40-63 (reserved for TIE)
|
||||||
.endr
|
.endr
|
||||||
.data
|
.section .bss
|
||||||
.global xtos_exc_handler_table
|
.global xtos_exc_handler_table
|
||||||
.align 4
|
.align 4
|
||||||
xtos_exc_handler_table:
|
xtos_exc_handler_table:
|
||||||
|
|
Loading…
Reference in New Issue