From: Brian Norris Date: Thu, 18 Dec 2014 02:39:01 +0000 (-0800) Subject: MIPS: JZ4740: Fixup #include's (sparse) X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=942e22dff290d244051fc67d169958f241fd8df0;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git MIPS: JZ4740: Fixup #include's (sparse) Fixes sparse warnings: arch/mips/jz4740/irq.c:63:6: warning: symbol 'jz4740_irq_suspend' was not declared. Should it be static? arch/mips/jz4740/irq.c:69:6: warning: symbol 'jz4740_irq_resume' was not declared. Should it be static? Also, I've seen some elusive build errors on my automated build test where JZ4740_IRQ_BASE and NR_IRQS are missing, but I can't reproduce them manually for some reason. Anyway, mach-jz4740/irq.h should help us avoid relying on some implicit include. Signed-off-by: Brian Norris Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/8724/ Acked-by: Lars-Peter Clausen Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/jz4740/irq.c b/arch/mips/jz4740/irq.c index 2531da1d3add..97206b3deb97 100644 --- a/arch/mips/jz4740/irq.c +++ b/arch/mips/jz4740/irq.c @@ -30,6 +30,9 @@ #include #include +#include + +#include "irq.h" static void __iomem *jz_intc_base;