diff options
author | Christian Borntraeger <borntraeger@linux.ibm.com> | 2022-07-12 11:31:40 +0200 |
---|---|---|
committer | Christian Borntraeger <borntraeger@linux.ibm.com> | 2022-07-13 10:10:02 +0200 |
commit | 6131fd198099d9cfde4cbcd6d60a07aa634a358c (patch) | |
tree | deba87b81a6f6d97b4ef33d2243be98f3d5f07ad | |
parent | 1b6abe95b522b313569469498c8c648a5ee535ba (diff) |
KVM: s390/pci: fix include duplicates
remove the duplicate includes. While at it sort the includes.
Reported-by: kernel test robot <yujie.liu@intel.com>
Fixes: 73f91b004321 ("KVM: s390: pci: enable host forwarding of Adapter Event Notifications")
Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
-rw-r--r-- | arch/s390/kvm/pci.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/s390/kvm/pci.h b/arch/s390/kvm/pci.h index 0351382e990f..3a3606c3a0fe 100644 --- a/arch/s390/kvm/pci.h +++ b/arch/s390/kvm/pci.h @@ -10,11 +10,10 @@ #ifndef __KVM_S390_PCI_H #define __KVM_S390_PCI_H -#include <linux/kvm_host.h> -#include <linux/pci.h> -#include <linux/mutex.h> #include <linux/kvm.h> #include <linux/kvm_host.h> +#include <linux/mutex.h> +#include <linux/pci.h> #include <asm/airq.h> #include <asm/cpu.h> |