#ifndef _LINUX_VIRTIO_DEMO_H
#define _LINUX_VIRTIO_DEMO_H
/* This header is BSD licensed so anyone can use the definitions to implement
 * compatible drivers/servers. */
#include "standard-headers/linux/virtio_ids.h"
#include "standard-headers/linux/virtio_config.h"

// Feature bitmap. Currently only bit 1
// is meaningful.
#define VIRTIO_F_DEMO_TEST 1

#endif /* _LINUX_VIRTIO_DEMO_H */