blob: 7e9c2f31c78cc4218d291f7444b61363db761018 [file] [log] [blame]
Nicholas Flintham1e3d3112013-04-10 10:48:38 +01001#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