| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * xen-acpi-pad.c - Xen pad interface |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (c) 2012, Intel Corporation. |
|---|
| 5 | 6 | * Author: Liu, Jinsong <jinsong.liu@intel.com> |
|---|
| 6 | | - * |
|---|
| 7 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 8 | | - * under the terms and conditions of the GNU General Public License, |
|---|
| 9 | | - * version 2, as published by the Free Software Foundation. |
|---|
| 10 | | - * |
|---|
| 11 | | - * This program is distributed in the hope it will be useful, but WITHOUT |
|---|
| 12 | | - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|---|
| 13 | | - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
|---|
| 14 | | - * more details. |
|---|
| 15 | 7 | */ |
|---|
| 16 | 8 | |
|---|
| 17 | 9 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
|---|
| .. | .. |
|---|
| 19 | 11 | #include <linux/kernel.h> |
|---|
| 20 | 12 | #include <linux/types.h> |
|---|
| 21 | 13 | #include <linux/acpi.h> |
|---|
| 14 | +#include <xen/xen.h> |
|---|
| 22 | 15 | #include <xen/interface/version.h> |
|---|
| 23 | 16 | #include <xen/xen-ops.h> |
|---|
| 24 | 17 | #include <asm/xen/hypercall.h> |
|---|