diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2013-05-07 15:51:28 (GMT) |
---|---|---|
committer | James Hogan <james.hogan@imgtec.com> | 2013-06-13 11:55:28 (GMT) |
commit | a85882d74b6d0fec122b2c7a77c1daa2e3b18909 (patch) | |
tree | 4d654a8e082fa873150758724263240550edf1dc | |
parent | 32580ae701256290640e7c845441141aac4d1cdb (diff) | |
download | linux-fsl-qoriq-a85882d74b6d0fec122b2c7a77c1daa2e3b18909.tar.xz |
metag/asm/irq.h: Declare init_IRQ
Fixes the following sparce warning:
warning: symbol 'init_IRQ' was not declared. Should it be static?
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: James Hogan <james.hogan@imgtec.com>
-rw-r--r-- | arch/metag/include/asm/irq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/metag/include/asm/irq.h b/arch/metag/include/asm/irq.h index be0c8f3..ad6bd0e 100644 --- a/arch/metag/include/asm/irq.h +++ b/arch/metag/include/asm/irq.h @@ -17,6 +17,7 @@ struct pt_regs; int tbisig_map(unsigned int hw); extern void do_IRQ(int irq, struct pt_regs *regs); +extern void init_IRQ(void); #ifdef CONFIG_METAG_SUSPEND_MEM int traps_save_context(void); |