Commit 863be3c3 authored by bibo mao's avatar bibo mao Committed by Thomas Bogendoerfer
Browse files

MIPS: Add header files reference with path prefix



There are some common header files which are referenced locally
with #includenext method, includenext is tricky method and only
used on mips platform.

This patech removes includenext method, replace it with defailed
pathname prefix for header files.

This patch passes to compile on all mips platform with defconfig,
and is verified on my loongson64 box.

Changes:
--------
v2:
  - Fix compiling issue on malta platform

Reported-by: default avatarkbuild test robot <lkp@intel.com>
Signed-off-by: default avatarbibo mao <maobibo@loongson.cn>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent e585b768
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,6 +11,6 @@

#define NR_IRQS 256

#include_next <irq.h>
#include <asm/mach-generic/irq.h>

#endif /* __ASM_AR7_IRQ_H */
+1 −1
Original line number Diff line number Diff line
@@ -27,6 +27,6 @@
#define ATH79_IP3_IRQ_COUNT     3
#define ATH79_IP3_IRQ(_x)       (ATH79_IP3_IRQ_BASE + (_x))

#include_next <irq.h>
#include <asm/mach-generic/irq.h>

#endif /* __ASM_MACH_ATH79_IRQ_H */
+1 −1
Original line number Diff line number Diff line
@@ -10,6 +10,6 @@

#define NR_IRQS 256

#include_next <irq.h>
#include <asm/mach-generic/irq.h>

#endif /* __ASM_MACH_EMMA2RH_IRQ_H */
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

#define NR_IRQS 256

#include_next <irq.h>
#include <asm/mach-generic/irq.h>

#define IP27_HUB_PEND0_IRQ	(MIPS_CPU_IRQ_BASE + 2)
#define IP27_HUB_PEND1_IRQ	(MIPS_CPU_IRQ_BASE + 3)
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ extern void __init ip30_install_ipi(void);
 */
#define IP30_POWER_IRQ		HEART_L2_INT_POWER_BTN

#include_next <irq.h>
#include <asm/mach-generic/irq.h>

#define IP30_HEART_L0_IRQ	(MIPS_CPU_IRQ_BASE + 2)
#define IP30_HEART_L1_IRQ	(MIPS_CPU_IRQ_BASE + 3)
Loading