From: Julien Grall Date: Mon, 14 Oct 2013 22:19:37 +0000 (+0100) Subject: xen/evtchn: Fix build on ARM X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6152 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=720f45ad01b6a3af2d77fb8fe122d934bbadba47;p=xen.git xen/evtchn: Fix build on ARM The recent event channel changes introduced by commit a77eb86 and before... break the compilation on Xen ARM. This commit adds missing includes in common/event_fifo.c and include/xen/sched.h. Signed-off-by: Julien Grall Acked-by: Ian Campbell --- diff --git a/xen/common/event_fifo.c b/xen/common/event_fifo.c index eb0b97c9a5..bec8d8789f 100644 --- a/xen/common/event_fifo.c +++ b/xen/common/event_fifo.c @@ -16,6 +16,7 @@ #include #include #include +#include #include diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h index c2588a5f86..25bf63776a 100644 --- a/xen/include/xen/sched.h +++ b/xen/include/xen/sched.h @@ -24,6 +24,7 @@ #include #include #include +#include #ifdef CONFIG_COMPAT #include