From: Sven Hartge <hartge@ds9.argh.org> Date: Sun, 9 Oct 2005 04:12:04 +0000 (-0700) Subject: [SPARC64]: Fix compile error in irq.c X-Git-Tag: firefly_0821_release~39876^2~50^2~117 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2e457ef667158840c1be511f5d10dd42c6dbbe46;p=firefly-linux-kernel-4.4.55.git [SPARC64]: Fix compile error in irq.c irq.c is missing the inclusion of asm/io.h, which causes readb() and writeb() the be undefined. Signed-off-by: Sven Hartge <hartge@ds9.argh.org> Signed-off-by: David S. Miller <davem@davemloft.net> --- diff --git a/arch/sparc64/kernel/irq.c b/arch/sparc64/kernel/irq.c index c9b69167632a..233526ba3abe 100644 --- a/arch/sparc64/kernel/irq.c +++ b/arch/sparc64/kernel/irq.c @@ -27,6 +27,7 @@ #include <asm/atomic.h> #include <asm/system.h> #include <asm/irq.h> +#include <asm/io.h> #include <asm/sbus.h> #include <asm/iommu.h> #include <asm/upa.h>