From: Konrad Rzeszutek Wilk Date: Mon, 26 Sep 2011 17:13:42 +0000 (-0400) Subject: xen/pv-on-hvm:kexec: Fix implicit declaration of function 'xen_hvm_domain' X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=5b25d89e19be2ff2fa7a5c80099e88fa56d66334;p=deliverable%2Flinux.git xen/pv-on-hvm:kexec: Fix implicit declaration of function 'xen_hvm_domain' Randy found a compile error when using make randconfig to trigger drivers/xen/xenbus/xenbus_xs.c:909:2: error: implicit declaration of function 'xen_hvm_domain' it is unclear which of the CONFIG options triggered this. This patch fixes the error. Reported-by: Randy Dunlap Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/drivers/xen/xenbus/xenbus_xs.c b/drivers/xen/xenbus/xenbus_xs.c index d1071de11878..b3b8f2f3ad10 100644 --- a/drivers/xen/xenbus/xenbus_xs.c +++ b/drivers/xen/xenbus/xenbus_xs.c @@ -45,6 +45,7 @@ #include #include #include +#include #include "xenbus_comms.h" struct xs_stored_msg {