arch: rename all esf struct to struct arch_esf

Rename every architecture's esf struct to `struct esf`.

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
This commit is contained in:
Yong Cong Sin 2024-06-01 10:26:04 +08:00 committed by Maureen Helm
commit 3998e18ec4
23 changed files with 42 additions and 39 deletions

View file

@ -17,7 +17,7 @@
#if DT_PROP(VPR_CPU, nordic_bus_width) == 64
#define SOC_ISR_STACKING_ESF_DECLARE \
struct __esf { \
struct arch_esf { \
unsigned long s0; \
unsigned long mstatus; \
unsigned long tp; \
@ -40,7 +40,7 @@
#else /* DT_PROP(VPR_CPU, nordic_bus_width) == 32 */
#define SOC_ISR_STACKING_ESF_DECLARE \
struct __esf { \
struct arch_esf { \
unsigned long s0; \
unsigned long mstatus; \
unsigned long tp; \