hw/arm/sbsa-ref: Remove unnecessary check for secure_sysmem == NULL
[qemu/ar7.git] / tests / libqos / virtio-rng.h
blob9e192f11f727c0c424168cfe4d3e9d9608dc2ab3
1 /*
2 * libqos driver framework
4 * Copyright (c) 2018 Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2 as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>
19 #ifndef TESTS_LIBQOS_VIRTIO_RNG_H
20 #define TESTS_LIBQOS_VIRTIO_RNG_H
22 #include "libqos/qgraph.h"
23 #include "libqos/virtio.h"
24 #include "libqos/virtio-pci.h"
26 typedef struct QVirtioRng QVirtioRng;
27 typedef struct QVirtioRngPCI QVirtioRngPCI;
28 typedef struct QVirtioRngDevice QVirtioRngDevice;
30 struct QVirtioRng {
31 QVirtioDevice *vdev;
34 struct QVirtioRngPCI {
35 QVirtioPCIDevice pci_vdev;
36 QVirtioRng rng;
39 struct QVirtioRngDevice {
40 QOSGraphObject obj;
41 QVirtioRng rng;
44 #endif