Commit 530719b2341fea925f58a5d6be0353fa43a88baf

Authored by Grant Likely
1 parent 4c60071c1e

of/irq: of_irq.c needs to include linux/irq.h

It works on current architectures simply because asm/prom.h includes
it, but it broke when x86 turned on CONFIG_OF.

Signed-off-by: Grant Likely <grant.likely@secretlab.ca>

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

include/linux/of_irq.h
... ... @@ -5,6 +5,7 @@
5 5 struct of_irq;
6 6 #include <linux/types.h>
7 7 #include <linux/errno.h>
  8 +#include <linux/irq.h>
8 9 #include <linux/ioport.h>
9 10 #include <linux/of.h>
10 11