1/*
2 * Copyright (c) 2014 ETH Zurich.
3 * All rights reserved.
4 *
5 * This file is distributed under the terms in the attached LICENSE file.
6 * If you do not find this file, copies can be found by writing to:
7 * ETH Zurich D-INFK, Universitaetsstrasse 6, CH-8092 Zurich. Attn: Systems Group.
8 */
9
10#include <barrelfish/barrelfish.h>
11
12#include <virtio/virtio.h>
13#include <virtio/virtio_device.h>
14
15#ifdef __VIRTIO_HOST__
16#include <virtio/virtio_host.h>
17#endif
18
19#include "backends/virtio_pci.h"
20
21
22errval_t virtio_device_pci_alloc(struct virtio_device **dev)
23{
24    return SYS_ERR_OK;
25}
26
27errval_t virtio_device_pci_free(struct virtio_device **dev)
28{
29    return SYS_ERR_OK;
30}
31
32
33
34