Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Annotations for marking C functions as exception handlers.
0004  *
0005  * These should only be used for C functions that are called from the low
0006  * level exception entry code and not any intervening C code.
0007  */
0008 #ifndef __ASM_ARM_EXCEPTION_H
0009 #define __ASM_ARM_EXCEPTION_H
0010 
0011 #include <linux/interrupt.h>
0012 
0013 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
0014 #define __exception_irq_entry   __irq_entry
0015 #else
0016 #define __exception_irq_entry
0017 #endif
0018 
0019 #endif /* __ASM_ARM_EXCEPTION_H */