Nicholas Flintham | 1e3d311 | 2013-04-10 10:48:38 +0100 | [diff] [blame^] | 1 | #ifndef __ASM_ARM_EXCEPTION_H |
2 | #define __ASM_ARM_EXCEPTION_H | ||||
3 | |||||
4 | #include <linux/ftrace.h> | ||||
5 | |||||
6 | #define __exception __attribute__((section(".exception.text"))) | ||||
7 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER | ||||
8 | #define __exception_irq_entry __irq_entry | ||||
9 | #else | ||||
10 | #define __exception_irq_entry __exception | ||||
11 | #endif | ||||
12 | |||||
13 | #endif |