summaryrefslogtreecommitdiff
path: root/arch/x86/xen/efi.c
diff options
context:
space:
mode:
authorDaniel Kiper <daniel.kiper@oracle.com>2014-09-08 13:22:18 (GMT)
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>2014-09-23 13:36:20 (GMT)
commit342cd340f6e73a974053dd09ed1bf8a9c1ed4458 (patch)
tree1806d6a5c05dcd9505e5ad5e435652975cd5604e /arch/x86/xen/efi.c
parent495daef902425e241a0b95791f3aeb737928256a (diff)
downloadlinux-342cd340f6e73a974053dd09ed1bf8a9c1ed4458.tar.xz
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>
Diffstat (limited to 'arch/x86/xen/efi.c')
-rw-r--r--arch/x86/xen/efi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/xen/efi.c b/arch/x86/xen/efi.c
index a02e09e..be14cc3 100644
--- a/arch/x86/xen/efi.c
+++ b/arch/x86/xen/efi.c
@@ -15,12 +15,14 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <linux/bitops.h>
#include <linux/efi.h>
#include <linux/init.h>
#include <linux/string.h>
#include <xen/xen-ops.h>
+#include <asm/page.h>
#include <asm/setup.h>
void __init xen_efi_init(void)