commit | 741b9dc65d3d97228bb128c1a7f00f619ff52e58 | [log] [tgz] |
---|---|---|
author | Carlo Caione <ccaione@baylibre.com> | Tue Jun 21 10:43:40 2022 +0200 |
committer | Anas Nashif <anas.nashif@intel.com> | Tue Jun 21 20:27:20 2022 -0400 |
tree | 7da6c61756503175d5dfcb6e76f9d94de817a41d | |
parent | 7f6b762a734b793a031103e12bbce865645d4f90 [diff] |
riscv: Rename __irq_wrapper to _isr_wrapper For some reasons RISCV is the only arch where the vector table entry is called __irq_wrapper instead of _isr_wrapper. This is not only a cosmetic change but Zephyr expects the common ISR handler to be called _isr_wrapper (for example when generating the IRQ vector table). Change it. find ./ -type f -exec sed -i 's/__irq_wrapper/_isr_wrapper/g' {} \; Signed-off-by: Carlo Caione <ccaione@baylibre.com>