diff options
author | Haojian Zhuang <haojian.zhuang@gmail.com> | 2012-07-30 10:20:34 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-08-02 13:15:59 -0400 |
commit | bac6f61550043195ee59e9cef0db67af23baf11e (patch) | |
tree | d12614482d8fcc5436bc5b97ce704c79dba6c606 | |
parent | 10b683cba5ef5cf4e0b50aabe5ed7137960b64e0 (diff) |
ARM: mmp: add missing irqs.h
arch/arm/mach-mmp/gplugd.c:195:13: error: ‘MMP_NR_IRQS’ undeclared here
(not in a function)
make[1]: *** [arch/arm/mach-mmp/gplugd.o] Error 1
Include <mach/irqs.h> to fix this issue.
Signed-off-by: Haojian Zhuang <haojian.zhuang@gmail.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
-rw-r--r-- | arch/arm/mach-mmp/gplugd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-mmp/gplugd.c b/arch/arm/mach-mmp/gplugd.c index f516e74ce0d5..5c3d61ee729a 100644 --- a/arch/arm/mach-mmp/gplugd.c +++ b/arch/arm/mach-mmp/gplugd.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <asm/mach/arch.h> | 14 | #include <asm/mach/arch.h> |
15 | #include <asm/mach-types.h> | 15 | #include <asm/mach-types.h> |
16 | 16 | ||
17 | #include <mach/irqs.h> | ||
17 | #include <mach/pxa168.h> | 18 | #include <mach/pxa168.h> |
18 | #include <mach/mfp-pxa168.h> | 19 | #include <mach/mfp-pxa168.h> |
19 | 20 | ||