233412bf7a
Now we can take advantage of our new base class and make vhost-user-rng a much simpler boilerplate wrapper. Also as this doesn't require any target specific hacks we only need to build the stubs once. Acked-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20240104210945.1223134-4-alex.bennee@linaro.org> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
25 lines
546 B
C
25 lines
546 B
C
/*
|
|
* Vhost-user RNG virtio device
|
|
*
|
|
* Copyright (c) 2021 Mathieu Poirier <mathieu.poirier@linaro.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef QEMU_VHOST_USER_RNG_H
|
|
#define QEMU_VHOST_USER_RNG_H
|
|
|
|
#include "hw/virtio/virtio.h"
|
|
#include "hw/virtio/vhost.h"
|
|
#include "hw/virtio/vhost-user.h"
|
|
#include "hw/virtio/vhost-user-base.h"
|
|
|
|
#define TYPE_VHOST_USER_RNG "vhost-user-rng"
|
|
OBJECT_DECLARE_SIMPLE_TYPE(VHostUserRNG, VHOST_USER_RNG)
|
|
|
|
struct VHostUserRNG {
|
|
VHostUserBase parent_obj;
|
|
};
|
|
|
|
#endif /* QEMU_VHOST_USER_RNG_H */
|