summaryrefslogtreecommitdiffstats
path: root/arch/s390/kvm/pci.h
blob: ce93978e8913c1bf5c3aa55760287a956d8f74f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * s390 kvm PCI passthrough support
 *
 * Copyright IBM Corp. 2022
 *
 *    Author(s): Matthew Rosato <mjrosato@linux.ibm.com>
 */

#ifndef __KVM_S390_PCI_H
#define __KVM_S390_PCI_H

#include <linux/kvm_host.h>
#include <linux/pci.h>

struct kvm_zdev {
	struct zpci_dev *zdev;
	struct kvm *kvm;
};

#endif /* __KVM_S390_PCI_H */