| 1 | /* |
| 2 | * s390 vfio-pci stubs |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 5 | */ |
| 6 | |
| 7 | #include "qemu/osdep.h" |
| 8 | #include "hw/s390x/s390-pci-vfio.h" |
| 9 | |
| 10 | bool s390_pci_update_dma_avail(int fd, unsigned int *avail) |
| 11 | { |
| 12 | return false; |
| 13 | } |
| 14 | |
| 15 | S390PCIDMACount *s390_pci_start_dma_count(S390pciState *s, |
| 16 | S390PCIBusDevice *pbdev) |
| 17 | { |
| 18 | return NULL; |
| 19 | } |
| 20 | |
| 21 | void s390_pci_end_dma_count(S390pciState *s, S390PCIDMACount *cnt) |
| 22 | { |
| 23 | } |
| 24 | |
| 25 | bool s390_pci_get_host_fh(S390PCIBusDevice *pbdev, uint32_t *fh) |
| 26 | { |
| 27 | return false; |
| 28 | } |
| 29 | |
| 30 | void s390_pci_get_clp_info(S390PCIBusDevice *pbdev) |
| 31 | { |
| 32 | } |