From: Paul Gortmaker Date: Thu, 28 Jul 2011 14:08:24 +0000 (-0400) Subject: xen: fix implicit stat.h/module.h include usage in xen-selfballoon.c X-Git-Tag: next-20110729~14^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5e52c90256af05ce0b27c7559b2b7b3e9d085546;p=karo-tx-linux.git xen: fix implicit stat.h/module.h include usage in xen-selfballoon.c 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 --- diff --git a/drivers/xen/xen-selfballoon.c b/drivers/xen/xen-selfballoon.c index 010937b5a7c9..dee7cf335cd7 100644 --- a/drivers/xen/xen-selfballoon.c +++ b/drivers/xen/xen-selfballoon.c @@ -69,6 +69,8 @@ #include #include +#include +#include #include #include