From bbb37680ad88a1d2138c84b498f915c31e286063 Mon Sep 17 00:00:00 2001 From: Paul Gortmaker Date: Thu, 28 Jul 2011 10:08:24 -0400 Subject: [PATCH] xen: fix implicit stat.h/module.h include usage in xen-selfballoon.c MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The module.h cleanup has revealed that this file had the following implicit dependencies as follows: CC drivers/xen/xen-selfballoon.o drivers/xen/xen-selfballoon.c:272: error: ‘S_IRUGO’ undeclared here (not in a function) drivers/xen/xen-selfballoon.c:272: error: ‘S_IWUSR’ undeclared here (not in a function) drivers/xen/xen-selfballoon.c:485: warning: type defaults to ‘int’ in declaration of ‘MODULE_LICENSE’ drivers/xen/xen-selfballoon.c:485: warning: function declaration isn’t a prototype make[3]: *** [drivers/xen/xen-selfballoon.o] Error 1 Signed-off-by: Paul Gortmaker --- drivers/xen/xen-selfballoon.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/xen/xen-selfballoon.c b/drivers/xen/xen-selfballoon.c index 1b4afd81f872..9172e10790c9 100644 --- a/drivers/xen/xen-selfballoon.c +++ b/drivers/xen/xen-selfballoon.c @@ -68,6 +68,8 @@ */ #include +#include +#include #include #include #include -- 2.39.5