Commit c7a49dd42d15f066d13e26c24c22c600b58528e0

Authored by Paul Mundt
1 parent e8ea024bff

sh: asm/irq.h needs asm/cpu/irq.h.

The SH-5 build currently fails when trying to build the i8042 code due
to the missing IRQ definitions. These are provided in asm/cpu/irq.h, so
just include that there to get it building again.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>

Showing 1 changed file with 4 additions and 0 deletions Side-by-side Diff

include/asm-sh/irq.h
... ... @@ -50,5 +50,9 @@
50 50 # define irq_ctx_exit(cpu) do { } while (0)
51 51 #endif
52 52  
  53 +#ifdef CONFIG_CPU_SH5
  54 +#include <asm/cpu/irq.h>
  55 +#endif
  56 +
53 57 #endif /* __ASM_SH_IRQ_H */