Browse Source

xen/efi: Directly include needed headers

I discovered that some needed stuff is defined/declared in headers
which are not included directly. Currently it works but if somebody
remove required headers from currently included headers then build
will break. So, just in case directly include all needed headers.

Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Daniel Kiper 11 years ago
parent
commit
342cd340f6
2 changed files with 4 additions and 0 deletions
  1. 2 0
      arch/x86/xen/efi.c
  2. 2 0
      drivers/xen/efi.c

+ 2 - 0
arch/x86/xen/efi.c

@@ -15,12 +15,14 @@
  * with this program.  If not, see <http://www.gnu.org/licenses/>.
  * with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
  */
 
 
+#include <linux/bitops.h>
 #include <linux/efi.h>
 #include <linux/efi.h>
 #include <linux/init.h>
 #include <linux/init.h>
 #include <linux/string.h>
 #include <linux/string.h>
 
 
 #include <xen/xen-ops.h>
 #include <xen/xen-ops.h>
 
 
+#include <asm/page.h>
 #include <asm/setup.h>
 #include <asm/setup.h>
 
 
 void __init xen_efi_init(void)
 void __init xen_efi_init(void)

+ 2 - 0
drivers/xen/efi.c

@@ -27,6 +27,8 @@
 #include <xen/interface/platform.h>
 #include <xen/interface/platform.h>
 #include <xen/xen.h>
 #include <xen/xen.h>
 
 
+#include <asm/page.h>
+
 #include <asm/xen/hypercall.h>
 #include <asm/xen/hypercall.h>
 
 
 #define INIT_EFI_OP(name) \
 #define INIT_EFI_OP(name) \