]> git.proxmox.com Git - mirror_qemu.git/blame - hw/virtio/vhost-stub.c
hw/virtio: add boilerplate for vhost-user-i2c device
[mirror_qemu.git] / hw / virtio / vhost-stub.c
CommitLineData
87c9b5e0 1#include "qemu/osdep.h"
2ce68e4c 2#include "hw/virtio/vhost.h"
4d0cf552 3#include "hw/virtio/vhost-user.h"
2ce68e4c
IM
4
5bool vhost_has_free_slot(void)
6{
7 return true;
8}
4d0cf552 9
0b99f224 10bool vhost_user_init(VhostUserState *user, CharBackend *chr, Error **errp)
4d0cf552 11{
0b99f224 12 return false;
4d0cf552
TB
13}
14
15void vhost_user_cleanup(VhostUserState *user)
16{
17}