target-microblaze: Drop unused cpu_mb_close() prototype
[qemu/opensuse.git] / hw / s390-virtio.h
blob25bb610fd8a92e841c735b4911bda6b71e1cb4c4
1 /*
2 * Virtio interfaces for s390
4 * Copyright 2012 IBM Corp.
5 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
7 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8 * your option) any later version. See the COPYING file in the top-level
9 * directory.
12 #ifndef HW_S390_VIRTIO_H
13 #define HW_S390_VIRTIO_H 1
15 #define KVM_S390_VIRTIO_NOTIFY 0
16 #define KVM_S390_VIRTIO_RESET 1
17 #define KVM_S390_VIRTIO_SET_STATUS 2
19 typedef int (*s390_virtio_fn)(const uint64_t *args);
20 void s390_register_virtio_hypercall(uint64_t code, s390_virtio_fn fn);
22 #endif