diff options
author | Chen Gang <gang.chen@asianux.com> | 2013-11-01 19:54:17 +0800 |
---|---|---|
committer | Richard Kuo <rkuo@codeaurora.org> | 2014-04-04 18:19:59 -0500 |
commit | 3d298ca1a48fcaba616bf57d3c12a2b0f58a65dc (patch) | |
tree | 3715c5356502a8ef7bb4203062d6f418bb446edd /arch/hexagon | |
parent | 6f8ae9bc0628c9e039003a7d572a6f59c835b868 (diff) | |
download | linux-3d298ca1a48fcaba616bf57d3c12a2b0f58a65dc.tar.gz linux-3d298ca1a48fcaba616bf57d3c12a2b0f58a65dc.tar.xz |
hexagon: kernel: kgdb: include related header for pass compiling.
Need include related headers for pass compiling, the related error
(with allmodconfig for v4):
CC arch/hexagon/kernel/kgdb.o
arch/hexagon/kernel/kgdb.c:30: error: invalid use of undefined type 'struct pt_regs'
arch/hexagon/kernel/kgdb.c:31: error: invalid use of undefined type 'struct pt_regs'
...
arch/hexagon/kernel/kgdb.c:220: error: implicit declaration of function 'local_irq_save'
arch/hexagon/kernel/kgdb.c:222: error: implicit declaration of function 'local_irq_restore'
...
Signed-off-by: Chen Gang <gang.chen@asianux.com>
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
Diffstat (limited to 'arch/hexagon')
-rw-r--r-- | arch/hexagon/kernel/kgdb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/hexagon/kernel/kgdb.c b/arch/hexagon/kernel/kgdb.c index 82d5c2593323..038580cc5abf 100644 --- a/arch/hexagon/kernel/kgdb.c +++ b/arch/hexagon/kernel/kgdb.c @@ -18,6 +18,8 @@ * 02110-1301, USA. */ +#include <linux/irq.h> +#include <linux/sched.h> #include <linux/kdebug.h> #include <linux/kgdb.h> |